Search results for

“xcode github”

95,405 results found

Post

Replies

Boosts

Views

Activity

Swift 2 REPL
HiWhere can I find the swift 2 REPL? I'm now running Mac OSX v10.11 with XCode 7 installed and running, but when I use the swift command in Terminal it tells me its using swift 1.2.Thanks in advance,Rugen Heidbuchel
1
0
406
Jun ’15
Can't submit app - "Invalid Signature - Code object is not signed at all"
Hello,I have submitted my app build from xCode on May 30, 2015. It passed all validations during submission and successfully appeared in iTunes Connect.Then I realized that there are few things that I want to fix before letting Apple start reviewing.Starting from yesterday (June 9) I am trying to submit another build for the same application using the same configurations and same xCode method for submission, but what I get is:Invalid Binary in the status line for all newly uploaded buildsAn email from iTunes Connect after each build upload, with this error description:Invalid Signature - Code object is not signed at all. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, no
3
0
3.6k
Jun ’15
SCNSceneSource.entryWithIdentifier not working with Xcode 7.0 and Swift 2.0
With Xcode 6.3.2 and Swift 1.3 Collada (DAE) files were loaded and entries found (e.g. animation) by using SCNSceneSource.entryWithIdentifier. With Xcode 7.0 and Swift 2.0, the file is loaded (SCNSceneSource.identifiersOfEntriesWithClass work) but no entries are found.Tried with MacOSX, iOS apps and several files.Her is the codelet sceneSource = SCNSceneSource(URL: url!, options: nil) let animationIDs = sceneSource.identifiersOfEntriesWithClass(CAAnimation.self) as [String] let animation : CAAnimation? = sceneSource.entryWithIdentifier(Name, withClass: CAAnimation.self)First two lines work and return identifiers including the one label Name. Line 3 returns only nil. Same code worked before with Xcode 6.3.2 and Swift 1.3
1
0
939
Jun ’15
Reply to apple watch UDID string
Just found this:Thanks 'David' !! There is a UUID for the Apple Watch. You can get it by plugging in the paired iPhone, opening up Xcode, and opening up the Devices window. Then select the paried iPhone in the sidebar, it should give you the paired Apple Watch's information as well, the UUID shows as the 'Identifier'. Hope this helps.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Error refreshing profiles in xcode
After the new Apple developer policies came in effect, I am not able to submit any updates. When fetching provisioning profile it errors out::An unexpected error occurred. Please try again. If the problem persists, please contact Apple Developer Program Support.https://developer.apple.com/supportI have tried refreshing/ deleting old profiles but doesn't work
6
0
905
Jun ’15
Crash with NSOpenPanel and XCode 7
Using El Capitan and XCode 7, the following trivial snippet of code causes a Swift related exception to be thrown:func openDocument(sender: AnyObject?) { let panel = NSOpenPanel(); let types = [ abc, def ] panel.allowedFileTypes = types; panel.runModal(); }The exception is [Swift._SwiftDeferredNSArray supportsSecureCoding]: unrecognized selector sent to class 0x1002de2c0. And it is triggered when assigning types to allowedFileTypes.
3
0
788
Jun ’15
Problem to put my application on my iPhone
Hello,I have a problem to put my application on my iPhone. I am registered for free and thanks to Xcode 7, I'm able to put my censer app on my iPhone. Only, it does not.Here is my error:Unable to create a provisioning profile because your team has no devices registered in the Member Center. Please connect a device, enable it for development, and add it to the Member Center using the Organizer.FRANCAIS :Bonjour,J'ai un problème pour mettre mon application sur mon iPhone. Je suis inscrit gratuitement et grace à Xcode 7, je suis censer pouvoir mettre mon appli sur mon iPhone. Seulement, ca ne marche pas.Voici mon erreur :
1
0
743
Jun ’15
Reply to On device watchOS debugging impossible
Resetting worked for a time (I managed to get a project running from xcode in a debug state a few times) But then very soon things have started decending into chaos again. Xcode started failing to attach to process, then the watch app stopped launching at all, constant loading spinner even when started directly from the watch. Now I'm left with the app 'installed' on the watch, despite having been removed from the device, as if the communication between the two has just stopped flowing. Currently rebooting everything to see if things pick up again.At least I now know it is possible, even if for a fleeting time.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Disk Image Mounting
Well a reboot fixed it. Odd. One of those things. Xcode 7 is now installed anyway
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to unable to understand this Xcode 9.0 idk in swift
this happened to me!why dont you try to uninstall xcode and then reinstall it, that worked with me and fix all the bugs I had with it
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Swift 2 REPL
HiWhere can I find the swift 2 REPL? I'm now running Mac OSX v10.11 with XCode 7 installed and running, but when I use the swift command in Terminal it tells me its using swift 1.2.Thanks in advance,Rugen Heidbuchel
Replies
1
Boosts
0
Views
406
Activity
Jun ’15
Can't submit app - "Invalid Signature - Code object is not signed at all"
Hello,I have submitted my app build from xCode on May 30, 2015. It passed all validations during submission and successfully appeared in iTunes Connect.Then I realized that there are few things that I want to fix before letting Apple start reviewing.Starting from yesterday (June 9) I am trying to submit another build for the same application using the same configurations and same xCode method for submission, but what I get is:Invalid Binary in the status line for all newly uploaded buildsAn email from iTunes Connect after each build upload, with this error description:Invalid Signature - Code object is not signed at all. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, no
Replies
3
Boosts
0
Views
3.6k
Activity
Jun ’15
SCNSceneSource.entryWithIdentifier not working with Xcode 7.0 and Swift 2.0
With Xcode 6.3.2 and Swift 1.3 Collada (DAE) files were loaded and entries found (e.g. animation) by using SCNSceneSource.entryWithIdentifier. With Xcode 7.0 and Swift 2.0, the file is loaded (SCNSceneSource.identifiersOfEntriesWithClass work) but no entries are found.Tried with MacOSX, iOS apps and several files.Her is the codelet sceneSource = SCNSceneSource(URL: url!, options: nil) let animationIDs = sceneSource.identifiersOfEntriesWithClass(CAAnimation.self) as [String] let animation : CAAnimation? = sceneSource.entryWithIdentifier(Name, withClass: CAAnimation.self)First two lines work and return identifiers including the one label Name. Line 3 returns only nil. Same code worked before with Xcode 6.3.2 and Swift 1.3
Replies
1
Boosts
0
Views
939
Activity
Jun ’15
apple watch UDID string
xcode (Version 7.0 beta (7A120f)) -->window-->organizer window does not show apple watch UDID string; only archive/crash display. Am i missing something?
Replies
2
Boosts
0
Views
841
Activity
Jun ’15
Reply to apple watch UDID string
Just found this:Thanks 'David' !! There is a UUID for the Apple Watch. You can get it by plugging in the paired iPhone, opening up Xcode, and opening up the Devices window. Then select the paried iPhone in the sidebar, it should give you the paired Apple Watch's information as well, the UUID shows as the 'Identifier'. Hope this helps.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Does the Apple Watch Have a UDID?
David, Thanks for the Post - I tried your suggestion and received Please enter a valid Hardware UDID - so no luck.and watch still not appearing in xcode -->window-->organizerany suggestions?Jason
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Can't find webview?
I'm new to XCode and I'm following some tutorials. Just installed the latest copy of XCode and trying to create a webview application, however I can't find webview in the utility area, what am I missing?
Replies
3
Boosts
0
Views
1.5k
Activity
Jun ’15
Reply to error when fetching profile from member center
Try going into Xcode > Preferences > Accounts and click all of the Apple ID's you have listed on the left and clicke the - (minus) sign on the bottom. Make sure everything is removed then click the + (plus) and Add Apple ID. See if re adding your accounts to Xcode solves the issue.
Replies
Boosts
Views
Activity
Jun ’15
Error refreshing profiles in xcode
After the new Apple developer policies came in effect, I am not able to submit any updates. When fetching provisioning profile it errors out::An unexpected error occurred. Please try again. If the problem persists, please contact Apple Developer Program Support.https://developer.apple.com/supportI have tried refreshing/ deleting old profiles but doesn't work
Replies
6
Boosts
0
Views
905
Activity
Jun ’15
invalid bundle no apple watch binary
The app build successfully but couple seconds later Xcode throw this (topic) error at me. Anyone run into similar issue? I've checked the Executable file name in info.plist and everything match.
Replies
10
Boosts
0
Views
3.4k
Activity
Jun ’15
Crash with NSOpenPanel and XCode 7
Using El Capitan and XCode 7, the following trivial snippet of code causes a Swift related exception to be thrown:func openDocument(sender: AnyObject?) { let panel = NSOpenPanel(); let types = [ abc, def ] panel.allowedFileTypes = types; panel.runModal(); }The exception is [Swift._SwiftDeferredNSArray supportsSecureCoding]: unrecognized selector sent to class 0x1002de2c0. And it is triggered when assigning types to allowedFileTypes.
Replies
3
Boosts
0
Views
788
Activity
Jun ’15
Problem to put my application on my iPhone
Hello,I have a problem to put my application on my iPhone. I am registered for free and thanks to Xcode 7, I'm able to put my censer app on my iPhone. Only, it does not.Here is my error:Unable to create a provisioning profile because your team has no devices registered in the Member Center. Please connect a device, enable it for development, and add it to the Member Center using the Organizer.FRANCAIS :Bonjour,J'ai un problème pour mettre mon application sur mon iPhone. Je suis inscrit gratuitement et grace à Xcode 7, je suis censer pouvoir mettre mon appli sur mon iPhone. Seulement, ca ne marche pas.Voici mon erreur :
Replies
1
Boosts
0
Views
743
Activity
Jun ’15
Reply to On device watchOS debugging impossible
Resetting worked for a time (I managed to get a project running from xcode in a debug state a few times) But then very soon things have started decending into chaos again. Xcode started failing to attach to process, then the watch app stopped launching at all, constant loading spinner even when started directly from the watch. Now I'm left with the app 'installed' on the watch, despite having been removed from the device, as if the communication between the two has just stopped flowing. Currently rebooting everything to see if things pick up again.At least I now know it is possible, even if for a fleeting time.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15