Search results for

“xcode github”

95,457 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 15 commit button not shown
The proposed solution does not work for me as well. I added my GitHub account under Xcode -> Settings -> Accounts. I also added my Author Name and Author Email under Xcode -> Settings -> Source Control. I made changes & went to Integrate -> Stage All Changes (this worked). Next, I went to Integrate -> Commit... and the screen below opens with the commit button greyed out. I know I can use terminal to commit my changes. I am trying to get the source control integration working on my project.
Apr ’24
Reply to iOS 12 scrollview zoom broken?
I have a github repo that demonstrates the problem. Unfortunately I cannot post the link here because of the draconian moderation filter :/My GH username is mluisbrown and the repo is called ZoomTest if you can reach it that way...From Xcode 10, if you run it in iOS 11.4 simulator it works as expected. In iOS 12 simulator it's completely broken. And viewForZooming is returning the imageView directly (there is no wrapper view)
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’18
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 "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 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
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
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
782
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
750
Feb ’25
Reply to Xcode 15 commit button not shown
The proposed solution does not work for me as well. I added my GitHub account under Xcode -> Settings -> Accounts. I also added my Author Name and Author Email under Xcode -> Settings -> Source Control. I made changes & went to Integrate -> Stage All Changes (this worked). Next, I went to Integrate -> Commit... and the screen below opens with the commit button greyed out. I know I can use terminal to commit my changes. I am trying to get the source control integration working on my project.
Replies
Boosts
Views
Activity
Apr ’24
Reply to iOS 12 scrollview zoom broken?
I have a github repo that demonstrates the problem. Unfortunately I cannot post the link here because of the draconian moderation filter :/My GH username is mluisbrown and the repo is called ZoomTest if you can reach it that way...From Xcode 10, if you run it in iOS 11.4 simulator it works as expected. In iOS 12 simulator it's completely broken. And viewForZooming is returning the imageView directly (there is no wrapper view)
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’18
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:
Replies
Boosts
Views
Activity
Apr ’17
Reply to Is it not allowed to post links to sample code for other developers
Yeah, any link to a non-Apple domain contained in a post automatically goes into moderation, where it will stay for anything from 3 -16 days if past experience is anything to go by. If you'd like to point someone toward a specific GitHub, you could suggest a Google search instead for GitHub + whatever instead.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15
Reply to Xcode 12 - Segmentation Fault 11 - SegFault
Did you first try the usual option-clean build folder ? Could it be a problem similar to this one https ://github .com/xmartlabs/Eureka/issues/2057 where self in some extension or some code was confusing the compiler ? See also detail https ://github .com/xmartlabs/Eureka/pull/2061
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’20
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:
Replies
Boosts
Views
Activity
Aug ’15
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:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
Oct ’20
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:
Replies
Boosts
Views
Activity
Aug ’17
Reply to How to submit Mac OS Input Method app to AppStore
You may want to distribute your framework via github, instead.
Replies
Boosts
Views
Activity
Mar ’16
Reply to AUMIDISynth - Anybody know how to load instruments into it?
Yes. Try this article which also has a working Github project.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jul ’16
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.
Replies
0
Boosts
0
Views
782
Activity
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
Replies
0
Boosts
0
Views
750
Activity
Feb ’25
Reply to Xcode Previews broken after setting different bundle identifier for debug/release modes
Try Clean Build. Restart x-code This resolved for me the issue :)
Replies
Boosts
Views
Activity
Aug ’24
Reply to Changing Icons
There is a Swift sample on GitHub -> https://github.com/juliengdt/DynamicIcon
Replies
Boosts
Views
Activity
Apr ’17