Search results for

“xcode github”

97,542 results found

Post

Replies

Boosts

Views

Activity

Reply to Developing iOS 13 app on Xcode 12 beta?
@D-hops: I'm in the same situation. I'm working on finishing up my first app for iOS 13 and have wondered about what is supposed to be done with a new iOS comes out. This is answering some questions, but I'm not familiar with git (I assume GitHub) or branches of code. Can anyone point me in the direction of how to use GitHub with Xcode? And how to branch code... :D I can't include links, but Ray Wenderlich has a tutorial on using Xcode 9 with git, which is slightly out of date, but I could figure it out from there. Atlassian also has some general git tutorials.
Jun ’20
Reply to iOS 10 backward compatibility
Xcode allows a range of iOS support (based on the iOS SDK it ships with), by setting the Deployment Target accordingly (allowing say iOS 10.x and 9.x in your example), so the general answer to your query is yes.Your framework would require coding/testing as usual to confirm either way.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’17
Reply to Issue launching a Developer ID signed app
OS X 10.10.4 included new code signature hardening that tripped up lots of folks who are doing their own signing (rather than having Xcode sign your product, which is what we recommend). You can read about this in 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:
Oct ’15
Reply to How to use edit> convert to convert objective C code to swift
I don't think that menu does what you hope...The choices being:- current swift syntax - modern Obj-C syntax- Obj-C w/arcThere is no 'Obj-C to Swift' choice.Quoting from Apple's Swift blog 10.2016:Xcode 7 and OS X El CapitanOS X El Capitan requires Xcode 7, which includes Swift 2, native support for System Integrity Protection (SIP), app thinning, as well as the latest SDKs. When running Xcode 7 you may notice a number of syntactical changes need to be applied to your Swift 1.2 code. To help in your migration to Swift 2, Xcode 7 includes a helpful tool to re-write older Swift code for you. Just select the menu item Edit > Convert > To Latest Swift Syntax and Xcode will migrate your code to the latest Swift API and syntax.
Dec ’17
Reply to Any way to debug Xcode Cloud / GitHub setup issues?
I never did work out how to debug it further, but I gave it one last try the next morning... and it worked! Today I got the Authorise button in the Xcode Cloud setup flow again, was walked through the journey on App Store Connect again, and it re-used the existing GitHub app I'd installed yesterday as an organisation owner. At the end, I got the success message: Xcode Cloud has been successfully connected. Xcode Cloud can now access your source code. Continue In Xcode ...which I believe I also got yesterday, but this time it worked! The only thing I can think of is that the first time I tried this yesterday, I did the journey as a normal Organisation member (not Owner) and asked an Owner to approve it. It looked like it had worked; when I got errors in Xcode, we deleted the app from GitHub, I was given Owner permissions, and tried again - but possibly something in Xcode Cloud had cached the previous setup? (I tried later on a different ma
Jan ’22
Reply to iOS Project (Xcode 7.3.1/HighSierra) issues whlie building from Xcode 10.1 (Mojave)
Xcode 7.x and 8.x are not compatible with, and unsupported on, macOS mojave. If you have a requirement to use those older Xcode's, you are obligated to use them with older macOSs.See the Xcode wiki for details, and before you ask, if your MAS history does not include older macOSs, you are out of luck there as well.As for issues with that project on Xcode 10, and if you are not in a position to climb the Xcode 7/8/9/10 ladder, I'd recommend creating a new project with the appropriate template, then fold your assets and code into it, working any issues one/by/one as you complete the transition.Good luck.
Feb ’19
Reply to Developing iOS 13 app on Xcode 12 beta?
@D-hops: I'm in the same situation. I'm working on finishing up my first app for iOS 13 and have wondered about what is supposed to be done with a new iOS comes out. This is answering some questions, but I'm not familiar with git (I assume GitHub) or branches of code. Can anyone point me in the direction of how to use GitHub with Xcode? And how to branch code... :D I can't include links, but Ray Wenderlich has a tutorial on using Xcode 9 with git, which is slightly out of date, but I could figure it out from there. Atlassian also has some general git tutorials.
Replies
Boosts
Views
Activity
Jun ’20
Reply to Xcode server bot can't clone from github/bitbucket
My issue was having a .gitconfig file containing an insteadOf URL directive. After commenting out the lines in the gitconfig, Xcode 13 accepts the GitHub personal access token.
Replies
Boosts
Views
Activity
Oct ’21
Reply to NSData(contentsOfURL) is always nil in PlayGround
Exactly the same code copied from the original post worked and returned an image of size 1200x1200 for each UIImage, tested in Xcode 6.4 on OS X 10.10.3 .
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’15
Reply to Xcode 8.3.2 auto-complete not working 1 (and only 1) file
If the problem is still there, please check my answer at http://stackoverflow.com/questions/9784175/issue-with-code-autocompletion-syntax-highlighting-in-xcode-4-x/43975833#43975833
Replies
Boosts
Views
Activity
May ’17
Reply to iOS 10 backward compatibility
Xcode allows a range of iOS support (based on the iOS SDK it ships with), by setting the Deployment Target accordingly (allowing say iOS 10.x and 9.x in your example), so the general answer to your query is yes.Your framework would require coding/testing as usual to confirm either way.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’17
Reply to Xcode w/Github account
Assuming you're using latest Xcode, 11.5.x, confirm your Github token local add process here: h ttps://gist.github.com/jonjack/bf295d4170edeb00e96fb158f9b1ba3c
Replies
Boosts
Views
Activity
Jun ’20
Reply to create a tunnel in “ WIREGUARD ” version 1.0.12
I have been testing app in xcode cloned from github. Application is running fine but when I try to create a tunnel it gives me error as I mentioned. Do I have to add something to add my own config?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’21
github how to download different commit
I just started a XCode Project with Swift. I have 6 Commits. Everytime I clone, download, open in desktop, and download zip gets last commit. How do I pick which one to pick?
Replies
0
Boosts
0
Views
333
Activity
Apr ’20
Reply to Issue launching a Developer ID signed app
OS X 10.10.4 included new code signature hardening that tripped up lots of folks who are doing their own signing (rather than having Xcode sign your product, which is what we recommend). You can read about this in 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
Oct ’15
Reply to How to use edit> convert to convert objective C code to swift
I don't think that menu does what you hope...The choices being:- current swift syntax - modern Obj-C syntax- Obj-C w/arcThere is no 'Obj-C to Swift' choice.Quoting from Apple's Swift blog 10.2016:Xcode 7 and OS X El CapitanOS X El Capitan requires Xcode 7, which includes Swift 2, native support for System Integrity Protection (SIP), app thinning, as well as the latest SDKs. When running Xcode 7 you may notice a number of syntactical changes need to be applied to your Swift 1.2 code. To help in your migration to Swift 2, Xcode 7 includes a helpful tool to re-write older Swift code for you. Just select the menu item Edit > Convert > To Latest Swift Syntax and Xcode will migrate your code to the latest Swift API and syntax.
Replies
Boosts
Views
Activity
Dec ’17
Reply to Any way to debug Xcode Cloud / GitHub setup issues?
I never did work out how to debug it further, but I gave it one last try the next morning... and it worked! Today I got the Authorise button in the Xcode Cloud setup flow again, was walked through the journey on App Store Connect again, and it re-used the existing GitHub app I'd installed yesterday as an organisation owner. At the end, I got the success message: Xcode Cloud has been successfully connected. Xcode Cloud can now access your source code. Continue In Xcode ...which I believe I also got yesterday, but this time it worked! The only thing I can think of is that the first time I tried this yesterday, I did the journey as a normal Organisation member (not Owner) and asked an Owner to approve it. It looked like it had worked; when I got errors in Xcode, we deleted the app from GitHub, I was given Owner permissions, and tried again - but possibly something in Xcode Cloud had cached the previous setup? (I tried later on a different ma
Replies
Boosts
Views
Activity
Jan ’22
Reply to iOS Project (Xcode 7.3.1/HighSierra) issues whlie building from Xcode 10.1 (Mojave)
Xcode 7.x and 8.x are not compatible with, and unsupported on, macOS mojave. If you have a requirement to use those older Xcode's, you are obligated to use them with older macOSs.See the Xcode wiki for details, and before you ask, if your MAS history does not include older macOSs, you are out of luck there as well.As for issues with that project on Xcode 10, and if you are not in a position to climb the Xcode 7/8/9/10 ladder, I'd recommend creating a new project with the appropriate template, then fold your assets and code into it, working any issues one/by/one as you complete the transition.Good luck.
Replies
Boosts
Views
Activity
Feb ’19
Reply to How to convert String? to Integer
Oh, wow. That might be it. Just realized I was still on xcode 6.x. I'm updating it right now, and try your code out. I'll let you know if it works!
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’16
can´t download Code 7 and OS X el capital
First, automatically start downloading, start to download xcode 7, two or three 3 hours later out an ad saying COULD NOT DOWNLOAD XCODE 7 but not says why. Please helpme.
Replies
0
Boosts
0
Views
278
Activity
Sep ’15
Reply to Xcode Github integration
The same thing is happening to me, however I previously had the GitHub account installed and it was working fine. Now it is just gone?! I was advised to delete and reinstall Xcode, which I did and it worked! 👍
Replies
Boosts
Views
Activity
Jan ’19