Search results for

“xcode github”

95,399 results found

Post

Replies

Boosts

Views

Activity

Layout objects not looking good with x code 9
Hi,After updating to x code 9, and compile my app, GUI elements not looking good..buttons and labels changed thier positions, and moved out side of the screen..i'm not using autolayout, i've added .xib files programatically, and set their frames programatically..Somebody knows why those GUI objects not in their position??
3
0
515
Sep ’17
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
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
504
Sep ’15
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
161
Jun ’25
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
Layout objects not looking good with x code 9
Hi,After updating to x code 9, and compile my app, GUI elements not looking good..buttons and labels changed thier positions, and moved out side of the screen..i'm not using autolayout, i've added .xib files programatically, and set their frames programatically..Somebody knows why those GUI objects not in their position??
Replies
3
Boosts
0
Views
515
Activity
Sep ’17
Reply to xcodebuild[56491:10396296] [MT] DVTAssertions: Warning in Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103
Getting the same issue trying to build a project in Github Actions on macOS 13 and Xcode 15.
Replies
Boosts
Views
Activity
Oct ’23
Can you use apple developer programs like swift or X code on a pc?
I want to build an app. Sad to say i am a beginer, buts its okay i have great ideas. I wanted to know if you can use X code or swift on a pc computer?
Replies
3
Boosts
0
Views
561
Activity
May ’16
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….
Replies
Boosts
Views
Activity
Sep ’17
Reply to Can't add Xcode Cloud workflow
Has anyone managed to get to the bottom of this? I have the same issue. Connected to GitHub just fine. I am on Xcode 14.1 and the issues persists.
Replies
Boosts
Views
Activity
Nov ’22
Reply to Issue with SceneStorage in ViewModifer, but not in View
With the same code, the warning is gone in Xcode 15.4, where I target x.5 releases of iOS and macOS.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’24
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
Replies
0
Boosts
0
Views
504
Activity
Sep ’15
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:
Replies
Boosts
Views
Activity
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
Replies
2
Boosts
0
Views
161
Activity
Jun ’25
Reply to Warnings creating dSYM in Xcode beta 6
How recently did this start? Did you recently modify an important part of your code or change some configuration or update Xcode or OS X?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
Is it mandatory to build a github repo for an iOS app?
Is it mandatory to build a github repo for an iOS app?
Replies
1
Boosts
0
Views
738
Activity
Dec ’18
Reply to dyld: Symbol not found: ScrollView scrollDisabled
Just wanted to know this reproduces easily. Deployment Target 17.0 iOS Simulator 17.x - Crashes on Startup iOS Simulator 18.x - Doesn't crash The entire code is just ScrollView { // Anything } .scrollDisabled(true) // --> This causes the crash on 17.x, Xcode 16
Replies
Boosts
Views
Activity
Jun ’24
Reply to I downloaded the "Talking To The Live View.playgroundbook" but cannot open it as a playground book in Xcode
It runs on the iPad using iOS 10.0 or later not on the Mac. You need the sample code toload it into xCode 8.x. You then run it, via xCode on your iPad.
Replies
Boosts
Views
Activity
Jul ’16
Reply to XCode 12 - Can't login to Github without Access Token???
You need to create a personal access token yourself. Xcode used to do this for you when you logged in, but Github have removed basic auth from their API, so Xcode simply can't do that anymore.
Replies
Boosts
Views
Activity
Dec ’20
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.
Replies
Boosts
Views
Activity
Nov ’15