Search results for

“xcode github”

95,393 results found

Post

Replies

Boosts

Views

Activity

Get X509 Data without OpenSSL
I previously would check if one certificate signed another (used to construct a certificate chain, NOT to validate), using the following code to create the data representation for the leaf certificate: CFDataRef data = SecCertificateCopyData(certificate); const UInt8 *buffer = CFDataGetBytePtr(data); X509 *x = X509_new(); d2i_X509(&x, &buffer, CFDataGetLength(data)); CFRelease(data); int length = i2d_X509_CINF(x->cert_info, NULL); unsigned char *info = malloc(length), *infoPtr = info; i2d_X509_CINF(x->cert_info, &info); X509_free(x); return CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, infoPtr, length, kCFAllocatorMalloc);OpenSSL is now gone from 10.11, is there another method of creating this representation?I didn't see anything like this in CryptoCompatibility
7
0
2.5k
Jun ’15
Reply to Java SE 6 Runtime messed up my laptop apps...
Just says Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed. I also used a code from Apple Support to delete all the java's it all workes but the last command that containt /usr/bin/ and after I use it to enable Java SE 6 Runtime to work it says Operation is not permitted
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Xcode 7 beta remote repository could not be found
Before launching the beta I committed changes, created a new branch in Xcode 6 for the beta, did a push to remote repository and got a success message, and then opened the project in the Xcode 7 beta. After allowing Swift to update a few things that have changed (in my case, some sorting closures), I saved and committed changes, then received this error:The remote repository could not be foundMake sure a valid repository exists at the specified location and try again.With this error, I quit the Beta, re-opened, and did a pull from the remote (which worked fine), then made one change, committed changes, and attempted a push to remote, which failed with the same error ... I could pull from it, but not push to it?MBA (mid-2013), 8 GB RAM 256 GB SSDXcode 7 beta (7A120f)Mac OS X 10.10.3Remote is running over the network, via SSH, on an iMac (and I have had no problems pushing/pulling from XCode 6.3.2)
4
0
6.0k
Jun ’15
Waiting for moderation of my last question, it's 9 hours ago now.
I posted a question to this new forums (in Xcode/Swift) now nine hours ago. I got this message when I pressed Post:Please note: your content was added successfully, but a moderator needs to approve it before it can be posted.And now I can only see it in Content -> Drafts, still with the above message.Anyone else experiencing this?Anyone have an idea what might be wrong?(I can't imagine that my question broke any forum rules or anything like that.)Also, apparently I have to enter the name of a place, and there is no place remotely describing the topic of this question, so I will just have to choose one that I think will be seen by a lot of people.I will now press Post and see if this question will just join the other one in Drafts or not.
11
0
2.9k
Jun ’15
Xcode 7 bots 'Integration pending' message
Yesterday I successfully installed 10.10.4 and Server 4.1.51 along with Xcode 7 beta. Then I setup Xcode server and chose the Xcode 7 beta. I setup a simple single view iOS 9 app with one unit test and one UI test. Then I added the project to the Xcode server and created a bot to run on every commit. This worked perfectly - with each commit, the bot ran and produced a successful build with no failures. Today I installed the preview of 10.11. The installation went successfully, but now whenever I try to run my bot, I just get Integration pending... message for the integration in Xcode. I tried deleting the bot and recreating it. Still I get the same error. Why?
4
0
4.2k
Jun ’15
Xcode setting ENABLE_BITCODE
I am compiling my app in the new Xode7-beta and getting these errorsld: warning: URGENT: all bitcode will be dropped because 'xxx' was built without bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. Note: This will be an error in the future.Where in Xcode does one set this?
11
0
57k
Jun ’15
Disk Image Mounting
Hello,I seem to have lost file association's for DMG's which is somewhat hampering my Xcode 7 install.Anyone know of a way to repair file associations to defaults, or maybe the DMG's - must be some helper program somewhere.ThanksPaul
2
0
725
Jun ’15
Get X509 Data without OpenSSL
I previously would check if one certificate signed another (used to construct a certificate chain, NOT to validate), using the following code to create the data representation for the leaf certificate: CFDataRef data = SecCertificateCopyData(certificate); const UInt8 *buffer = CFDataGetBytePtr(data); X509 *x = X509_new(); d2i_X509(&x, &buffer, CFDataGetLength(data)); CFRelease(data); int length = i2d_X509_CINF(x->cert_info, NULL); unsigned char *info = malloc(length), *infoPtr = info; i2d_X509_CINF(x->cert_info, &info); X509_free(x); return CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, infoPtr, length, kCFAllocatorMalloc);OpenSSL is now gone from 10.11, is there another method of creating this representation?I didn't see anything like this in CryptoCompatibility
Replies
7
Boosts
0
Views
2.5k
Activity
Jun ’15
Reply to Java SE 6 Runtime messed up my laptop apps...
Just says Java for OS X 2014-001 can't be installed on this disk. A newer version of this package is already installed. I also used a code from Apple Support to delete all the java's it all workes but the last command that containt /usr/bin/ and after I use it to enable Java SE 6 Runtime to work it says Operation is not permitted
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Xcode 7 beta remote repository could not be found
Before launching the beta I committed changes, created a new branch in Xcode 6 for the beta, did a push to remote repository and got a success message, and then opened the project in the Xcode 7 beta. After allowing Swift to update a few things that have changed (in my case, some sorting closures), I saved and committed changes, then received this error:The remote repository could not be foundMake sure a valid repository exists at the specified location and try again.With this error, I quit the Beta, re-opened, and did a pull from the remote (which worked fine), then made one change, committed changes, and attempted a push to remote, which failed with the same error ... I could pull from it, but not push to it?MBA (mid-2013), 8 GB RAM 256 GB SSDXcode 7 beta (7A120f)Mac OS X 10.10.3Remote is running over the network, via SSH, on an iMac (and I have had no problems pushing/pulling from XCode 6.3.2)
Replies
4
Boosts
0
Views
6.0k
Activity
Jun ’15
Reply to linker command failed with exit code 1 (use -v to see invocation)
What happens when you try to build from within Xcode?But from this ld: file not found: /Users/nathan - Is your user still named nathan?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
This bundle is invalid. Apple is not currently accepting applications built with this version of the OS.
This bundle is invalid. Apple is not currently accepting applications built with this version of the OS. error message. Im trying to submit app to appstore. Im using xcode 6.3.2 (6D2105) (Release). How to fix it? In all setting inside xcode target is 10.10. base sdk 10.10 too. On my mac i have OSX 10.11 beta.
Replies
3
Boosts
0
Views
993
Activity
Jun ’15
"Debug Selected Views" Crashes Xcode 6.3.2
I'm trying to build a @IBDesignable view in Swift andand my variable are not being set so I want to debugit with Debug Selected Views but everytime I use themenu selection XCode crashes.What might I be doing wrong?
Replies
2
Boosts
0
Views
649
Activity
Jun ’15
Swift 1.2 and Swift 2 in the same project?
Does anyone know if it is possible to have Swift 1.2 and Swift 2 source code in the same Xcode 7 project?
Replies
8
Boosts
0
Views
3.0k
Activity
Jun ’15
Reply to Using Xcode 7 for production apps
Just like last year, you still can't until Apple releases the GM version of Xcode and that submitted app will be released when iOS 9 is released.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Waiting for moderation of my last question, it's 9 hours ago now.
I posted a question to this new forums (in Xcode/Swift) now nine hours ago. I got this message when I pressed Post:Please note: your content was added successfully, but a moderator needs to approve it before it can be posted.And now I can only see it in Content -> Drafts, still with the above message.Anyone else experiencing this?Anyone have an idea what might be wrong?(I can't imagine that my question broke any forum rules or anything like that.)Also, apparently I have to enter the name of a place, and there is no place remotely describing the topic of this question, so I will just have to choose one that I think will be seen by a lot of people.I will now press Post and see if this question will just join the other one in Drafts or not.
Replies
11
Boosts
0
Views
2.9k
Activity
Jun ’15
Xcode 7 bots 'Integration pending' message
Yesterday I successfully installed 10.10.4 and Server 4.1.51 along with Xcode 7 beta. Then I setup Xcode server and chose the Xcode 7 beta. I setup a simple single view iOS 9 app with one unit test and one UI test. Then I added the project to the Xcode server and created a bot to run on every commit. This worked perfectly - with each commit, the bot ran and produced a successful build with no failures. Today I installed the preview of 10.11. The installation went successfully, but now whenever I try to run my bot, I just get Integration pending... message for the integration in Xcode. I tried deleting the bot and recreating it. Still I get the same error. Why?
Replies
4
Boosts
0
Views
4.2k
Activity
Jun ’15
Can I post source code (NDA)
Hi,my question is, can I upload source code that uses iOS9 specific features to github and make it public. Or is this against the NDA?Cheers
Replies
5
Boosts
0
Views
1.5k
Activity
Jun ’15
Xcode setting ENABLE_BITCODE
I am compiling my app in the new Xode7-beta and getting these errorsld: warning: URGENT: all bitcode will be dropped because 'xxx' was built without bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. Note: This will be an error in the future.Where in Xcode does one set this?
Replies
11
Boosts
0
Views
57k
Activity
Jun ’15
Reply to Waiting for moderation of my last question, it's 9 hours ago now.
I used start a discussion for both this (successful) thread and that thread which apparently only I can see here in Xcode/Swift and which is awaiting moderation. I wonder if I would break some rule if I posted a link to a screenshot of that thread/question ...
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
Disk Image Mounting
Hello,I seem to have lost file association's for DMG's which is somewhat hampering my Xcode 7 install.Anyone know of a way to repair file associations to defaults, or maybe the DMG's - must be some helper program somewhere.ThanksPaul
Replies
2
Boosts
0
Views
725
Activity
Jun ’15
Reply to Can't find how to migrate to Swift 2
Ok, look here. In Xcode, select Edit > Convert > To Latest Swift Syntax.
Replies
Boosts
Views
Activity
Jun ’15