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
Search results for
xcode github
94,026 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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:
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
Topic:
Developer Tools & Services
SubTopic:
Xcode
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:
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.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
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….
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
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
Topic:
Developer Tools & Services
SubTopic:
Xcode
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.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
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:
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.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
...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.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I ran into this with Xcode 16, this line from perlguy99 on github solved it for me. xcrun simctl --set previews delete all
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
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.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
For the sake of the Safari extension community, I've posted all of my Safari extension issues from Feedback Assistant on GitHub. You're welcome to post yours there too! Together we can create a publicly searchable bug database, which currently doesn't exist. I hope this helps to improve the quality of Safari extensions across the board. Here's the list on GitHub: https://github.com/lapcat/SafariExtensions/issues
I've configured a workflow to run through tests when a PR is changed. https://developer.apple.com/documentation/xcode/configuring-start-conditions Is it possible to configure it so that the tests don't run while it's a draft PR and to only run it once it's moved to ready for review?