Search results for

xcode github

92,022 results found

Post

Replies

Boosts

Views

Activity

Reply to "codesign verify" is happy but spctl rejected ?
--deep is almost never the right option for signing an app with nested code. You typically want to either have Xcode do this for you (which is what I recommend) or sign in multiple steps, signing nested code from the inside out. As to you overall problem, AFAICT your shipping nested code in an unsupported place. Dynamic libraries, like libcocoaprintersupport.dylib, should be in your Frameworks directory. See Table 3 of Technote 2206 OS X Code Signing In Depth. Share and Enjoy — Quinn The Eskimo! Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: Code Signing SubTopic: General Tags:
Aug ’15
Reply to Xcode cloud does not detect branches other than develop
I encountered this issue as well. The fix, in my case: I set up the Workflow, but I was not the owner of the GitHub repo. An email was sent to the owner, requesting them to grant access to the applicable repos set during the Workflow setup. After the owner granted access, I had to right-click the Workflow in Xcode, click Manage Repositories, then in App Store Connect click Grant
Aug ’22
Reply to xcode-beta 7 hang fix?
Same Problem - simulator giving constant SpringBoard errors and unable to open any XIB's. When I try to open a XIB, X-Code 7 crashes....In fact can not compile anything now.... even though I have re-installed X-code 7 from scatch...Have had to fall back on my old iMac running OS X 10.4 for the moment... such a waste of time when instead I am used to running everything on my iMac Retina.Here's to hoping Apple solves this soon !
Aug ’15
Reply to Mac App store Code Signing EXC_CRASH (Code Signature Invalid)
Just to let everyone know, we generated updated distribution profiles and built under 10.12.6 and submitted and it worked I guess. I have no clue why, but seems like there must have been some kind of bug either with XCODE and codesigning under 10.11.x or something changed in Apple's back end which we have no idea about that must have affected code signing recently.
Topic: Code Signing SubTopic: General Tags:
Aug ’17
Reply to Unable to use Xcode Cloud - "does not have a remote repository"
Hi, Since you're using a self-hosted SCM instance, the issue may be with Xcode Cloud connecting to it. You can check out Xcode Cloud's source control requirements here but this is the relevant part: If you use an IP allow list either on a self-hosted or cloud SCM provider — such as Bitbucket Server or GitHub Enterprise — make sure Xcode Cloud has access to your Git server. Check your firewall’s inbound HTTPS allow list and grant Xcode Cloud access to your Git server by adding the IP address ranges 17.58.0.0/18, 17.58.192.0/18, and 57.103.0.0/22.
Jan ’25
Reply to The self keyword in initWithDelegate:queue
What is the meaning of the self keyword?For code inside an instance method of class X, it’s a reference to the instance of class X (or subclass of class X) on which that method was called. For code running inside a class method of class X, it’s a reference to class X (or subclass of X).From my understanding it is referring to the ViewController that I am currently working in. For example, if I have a property called someTextField inside my ViewController.h file, When I access the property I say: self.someTextField. So from that I understand that self is the viewcontroller. Is this the right way on thinking about it?Yes (assuming that the code you’re talking about is an instance method of the ViewController class).With regards to the initWithDelegate:queue method. … So in the developer doumentation, the first parameter is the delegate whihc receives the events. In this case, it is set to self. So is self reffering to the ViewContr
Topic: Programming Languages SubTopic: General Tags:
Apr ’17
Reply to how XCode to calculate Memory
memoryFootprint is quite confusing code but useful. Putting it in the debugger and studying info (at line return info.phys_footprint) I see it has a field limit_bytes_remaining Is this a useful guideline as to how much memory is available for allocation? I notice that when UIGraphicsBeginImageContextWithOptions(size,....) fails with a message Cannot allocate X bytes X is 16 x size.width x size.height I would like to know if UIGraphicsBeginImageContextWithOptions will fail before I call it and crash
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’21
Reply to In app purchase “Cannot connect to iTunes Store” error for Sandbox user
I am also experiencing this issue. Using Xcode 12.0, I am seeing the same double prompt for password, which is then followed by this error: Error Domain=SKErrorDomain Code=0 Cannot connect to iTunes Store UserInfo={NSLocalizedDescription=Cannot connect to iTunes Store} This is happening on devices running iOS 11.x < iOS 13.x. As others have stated, this does not occur on iOS 14 devices. I tried purchasing both consumable IAPs, and Renewable Subscriptions. Both have the same result. Test Flight builds that perform purchases using non-sandbox Apple IDs seem to work without any issue on any OS.
Topic: App & System Services SubTopic: StoreKit Tags:
Oct ’20
WWDC App Doesn't allow login with 2 Step Code on iPhone X
I was just testing out the WWDC app ability to add a passcode for the WWDC ticket to the iPhone on my iPhone X.But I noticed the page to request a 2 step token has the wrong top margins, so once you get to that screen you cannot continue or cancel.Raised bug radar https://bugreport.apple.com/web/?problemID=38898852.Given WWDC tickets are now announced, and this version of the App is meant to be compatible with iPhone X, then I thought I'd raise it here so it doesn't slip through the gaps.Looking forward to it this year, see you there.
0
0
777
Apr ’18
New playback error on iOS/tvOS 18.x "CoreMediaErrorDomain Code=-15486"
Hello, Our users have started to see a new fatal AVPlayer error during playback starting with iOS/tvOS 18.0. The error is defined as CoreMediaErrorDomain Code=-15486. We have not been able to reproduce this issue locally within our development team. Is there any documentation on the cause of this error or steps to recover from this error? Thank you, Howard
0
0
633
Feb ’25