Search results for

xcode github

91,940 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 9 - Git not on GitHub?
Hi, actually Xcode doesn't make things as simple as the GitHub integration. But it's totally possible to add other remotes.First, you can add them with the Terminal. Xcode will use them and it will do the job just as with the Github integration. But there's also something less obvious. If you go to the Git Navigator, you'll see three folders. Branches, Tags, and Remotes. Just right click Remotes and select Add Existing Remote….
Sep ’17
Reply to Digital signing in objective-c using xcode 3.2.5
I am new to the xcode and also in MAC envronment. I want to know what are the API or methods used for Digital Signing in objective-c using xcode 3.2.5.Xcode 3.2.5? Really?That version of Xcode is very old. What version of OS X are you running it on?With regards signing, there's a specific issue at play. IIRC Xcode 3.2 is for Mac OS X 10.6, and the API you want to use (SecSignTransformCreate) was introduced in OS X 10.7. If you really are stuck on 10.6 then you'll have to use the much older CDSA APIs. These are long-since deprecated, so there's not a lot of information about how to use them. Specifically, I can't help you with them because I never got around to learning them myself. Moreover, I can't recommend that you write new code that targets these APIs because, well, they're deprecated. If there's any chance you can upgrade to OS X 10.7 and Xcode 4.x, the situation will be a lot clearer. Here you'll
Topic: Programming Languages SubTopic: General Tags:
Jul ’15
X-code crashing every 2 minutes
My xcode 16.4 keeps crashing with the error: Anyone know how to fix it? Process: Xcode [20071] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 16.4 (23792) Build Info: IDEApplication-23792000000000000~2 (16F6) App Item ID: 497799835 App External ID: 874973124 Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2025-06-06 01:31:03.6599 +1000 OS Version: macOS 15.5 (24F74) Report Version: 12 Anonymous UUID: 3ED1A837-3C2A-D5E1-B6F0-D115812C4E33 Sleep/Wake UUID: 906EABDA-2FDD-40F8-8C53-922340EA0AB1 Time Awake Since Boot: 12000 seconds Time Since Wake: 347 seconds System Integrity Protection: enabled Notes: Extracting libpas PGM metadata failed. Crashed Thread: 12 Dispatch queue: */sec-35-TextField.swift - predictive Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x000000025dcaca80 Exception Codes: 0x0000000000000002, 0x000000025dcaca80 Termination Reason: Namespace SIGNAL, Code 10
2
0
127
Jun ’25
application:didReceiveRemoteNotification:fetchCompletionHandler: not being called when iPhone is not connected to x-code
I have a strange problem. I'm developing an app with push notifications, and when the iphone is pluged and I run my app from x-code, if I receive a push notification, my application:didReceiveRemoteNotification:fetchCompletionHandler: method is called, and it runs some code in background, like for example to set the application badge number to ++.So if I send multiple push notifications, my app badge icon changes.But when stop x-code and I launch the app outside of x-code (from the iphone) my application:didReceiveRemoteNotification:fetchCompletionHandler: method is not called, and the app icon badge is allways 1, no matter how many push notifications are sended.This is just an example without importance, but I have some important things to do in that method, like for example, an url link is allways sent into my push notifications, and if application:didReceiveRemoteNotification:fetchCompletionHandler: method is not being called, my url won't load
0
0
493
Sep ’15
Reply to Add my own Framework to Target in same Project
...even though I requested not to upgrade the Swift...If you go to Xcode 7.x, you will have to upgrade your Swift code to Swift 2.x. The only option you have is whether you want Xcode to attempt to make the changes for you. If you say No, you have to make all the changes yourself. If you say Yes, Xcode will get some (most?) of the changes, but you will still probably have to fix some things yourself.
Nov ’15
Reply to Viewing Interface in XCode 12.3
There is a .xib file. I recall editing the interface a few months ago but don't seem able to do it now after a few upgrades. CocoaSlideShow was from Github. I downloaded a zip of the CocoaSlideShow code from GitHub. The first time I viewed it with XCode (12.3.(12C33)) I could see the interface. After closing and re-opening I could not see it.
Mar ’21