Search results for

“xcode github”

97,542 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
529
Sep ’17
Reply to Xcode Cloud not detecting branches?
From Setting up your project to use Xcode Cloud: Additionally, you need a certain permission or role to connect Xcode Cloud to your Git repository. The exact permission depends on the SCM provider you use: If you host your code on Bitbucket Cloud or Bitbucket Server, you need the administrator permission. If you host your code on GitHub or GitHub Enterprise, you need to be an organization owner, or need the admin permission if you don’t use a GitHub organization. If you host your code on GitLab, or on a self-managed GitLab instance, you need the maintainer permission. If you don’t have the required role or permission, work with a team member who does. For more information, see Connect Xcode Cloud to an admin-managed Git repository.
Jul ’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
515
Sep ’15
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
198
Jun ’25
X-Code is refusing to continue compiling a project because 2 files that are not included in ANY target have code errors.
How do I make X-code do the thing it should already be doing?
Replies
0
Boosts
0
Views
1.2k
Activity
Apr ’19
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
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
529
Activity
Sep ’17
Reply to Xcode Cloud not detecting branches?
From Setting up your project to use Xcode Cloud: Additionally, you need a certain permission or role to connect Xcode Cloud to your Git repository. The exact permission depends on the SCM provider you use: If you host your code on Bitbucket Cloud or Bitbucket Server, you need the administrator permission. If you host your code on GitHub or GitHub Enterprise, you need to be an organization owner, or need the admin permission if you don’t use a GitHub organization. If you host your code on GitLab, or on a self-managed GitLab instance, you need the maintainer permission. If you don’t have the required role or permission, work with a team member who does. For more information, see Connect Xcode Cloud to an admin-managed Git repository.
Replies
Boosts
Views
Activity
Jul ’25
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
587
Activity
May ’16
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
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
515
Activity
Sep ’15
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
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 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
198
Activity
Jun ’25
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 SwiftUI Previews not working Xcode 15 iOS 17 simulator
I ran into this with Xcode 16, this line from perlguy99 on github solved it for me. xcrun simctl --set previews delete all
Replies
Boosts
Views
Activity
Dec ’24
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
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
747
Activity
Dec ’18