Search results for

“xcode github”

98,152 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode 13.3 SwiftPM.SPMRepositoryError error 5
You need to generate a new key since the one Xcode auto-generates is not supported... ssh-keygen -t ecdsa -C our_email pbcopy < ~/.ssh/id_ecdsa.pub Go to https://github.com/settings/ssh/new, paste the key and save. Go to Xcode -> Preferences -> Sign into the github account if not already. Select SSH for Clone using For SSH Key select id_ecdsa.
Mar ’22
Reply to How can we create class diagram in Xcode 7 and above?
Found this ; they mention OmniGraffle, but it seems to have limitsanda freeware (github, so you could customize):h ttps://stackoverflow.com/questions/29186136/uml-class-diagrams-for-xcode-swift-programmingEditedI tested, it's very interesting ; clearly, the set up on the page could be improved (up to us to improve the freeware), but a very good starting point.
Topic: Programming Languages SubTopic: General Tags:
Sep ’17
Reply to Crash by SwiftData MigarionPlan
I just tried logging an error.localizedDescription in TestFlight and got : Could not create ModelContainer: The operation couldn’t be completed. I also tried adding -com.apple.CoreData.MigrationDebug 1 to the launch arguments, but there was no CoreData: error: ... in the Xcode console. I created a new project and copied the MigraitonPlan-related code from my code into it and uploaded it to Github. TestDemo
Topic: App & System Services SubTopic: iCloud Tags:
Jul ’24
Reply to Xcode doesn't support iOS 14.5.1
You can add support for iOS 14.5 (and watchOS 7.4) by copying the relevant DeviceSupport folders from Xcode 12.5 to Xcode 12.4. For example the one for iOS 14.5 is located at is Xcode.app/Contents/Developer/iPhoneOS.platform/DeviceSupport/14.5 You can download the xip for Xcode 12.5 from here: https://developer.apple.com/download/more/?=xcode and extract that folder from the XCode.app inside it and move it to your installed XCode.app. There are also publicly hosted GitHub repositories with these folders, a quick search will turn them up. It is obviously better to extract it from the official source yourself, but I think the archives are signed anyways.
May ’21
Reply to Xcode Server no longer includes the capacity to host Git repositories.
>it's pretty straightforward to just use git and ssh on the server. I never used the xcode server option for it - are you really losing anything (besides time having to set up something new)? I have a ton of self hosted git repositories set up on my Xcode Server and having to set up remotes elsewhere or to configure them from the command line is a a time consuming task. Just a coulple clicks in the GUI was pretty nice.>But I am sincerely curious. Mostly just want to encourage you to look into setting it up yourself as a git+ssh type thing before you feel like you have no option besides switching to paid setup.Paying Github to host private repositories was never going to happen from me. But don't kid yourself, they made a deal with them for this integrated setup in Xcode 9 and money was involved. Self-hosting repositories is an easy way to not pay Github, so I bet they agreed with them to remove the feature in exchange for that open in xcode stuff on
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’17
Reply to Custom Errors
I tried the code you last posted in new project (both Xcode 8.3.3 and Xcode 9, Swift 3.x and 4) and it works fine. At this point, I'd say the problem is not the ExamineError declaration, but something else is going wrong in your project. If you're using a current version of Xcode, I'd suggest you submit a bug report and see what comes back.Incidentally, just for interest, you could try:catch { let e = error as! ExamineError print (type(of: e)) }and see what it says.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’17
Reply to Building macOS with App Groups using external CI/CD
I'm also experiencing this issue so I figured I'd throw my own details on here in case they help. I am building a macOS System / Network Extension. I can build locally with both Development and Developer ID keys using XCode. As soon as I move towards xcodebuild (locally), I need to have the provisioning profile installed by downloading it from the Developer Portal and double-clicking it, etc. xcodebuild -scheme Extension -configuration Release -destination generic/platform=macOS The exact problem rookuuu has happens when I attempt to build in my CI pipeline with the exact same provisioning profile and key. Specifically GitHub Actions + GitHub-Hosted Runners using GitHub instructions for installing profiles. If I remove the profiles locally on my machine and attempt to install the provisioning profile using GitHub instructions (rename {ProfileName}.provisionprofile to {ProfileGuid}.mobileprovision and add to ~/Library/MobileDevice/Provisioning Profiles) it has the s
Jun ’23
Reply to Xcode 8 release crashes on old xib files
I have the exact same issue. Any help would be greatly appreciated!If it''s of any help, my Xcode crash log is overe here gist [dot] github [dot] com [slash] thomax [slash] b338a8d02fb0c230fb1ec8e6cda41be9. Sorry for mangling that URL, but it seems the only way to avoid the moderation flag, and moderation around here seems to take a while.
Sep ’16
Reply to Problems after updating to Xcode 13.3
UPDATE 3: The problem with iCloud returned. Changing my Apple ID password doesn't seem to have any effect. Every time I restart the mac and log in, iCloud asks me to log in like it's the first time. Mail no longer has the password for my email account. Added to this is the verification of Xcode as well as other applications. Xcode keeps asking me to install components like it's the first time. On Xcode I also have to reconnect to my gitlab and github accounts. This is really hell!!! It's a nightmare !!!
Mar ’22
Reply to MacOs Drops Github Credentials
I have same problem when access my company bitbucket after upgrade to MacOS Ventura beta8, but when i try to access my personal github repo, it works fine.Anyone have an idea? additional: i can access my company repo use Xcode, but when i use git tools in Terminal,it give me Permission denied (publickey). So weird.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
Reply to Connecting Python 3.8 with Xcode 11
Got this from github and seems to work.How to use Xcode IDE for Python developmentOpen Xcode and start with creating a new project: From the templates, choose Cross-platform > External Build System Give it a name. You can update Organizatin Name and Identifier if you want. Make sure you enter a correct path for Python bin. For Python 3.x it's usually /usr/bin/pythonw. Click Next and save it. Open scheme editor, select Run from the left hand pane, and Info tab from the detail pane. From Executable menu, select Other... and navigate to where your Python executable binary is locate. That's the same location you entered in step 4, e.g. /usr/bin/pythonw. You can also use **** + Command + G and paste the address in the dialog box. Uncheck Debug executable box. Still in Run menu, select Arguments tap, and add a new entry to Arguments Passed on Launch. This is the name of the file where you'll write your Python code in it. You'll create the file later. Still in Run menu
Jan ’20
Reply to Xcode 13.3 SwiftPM.SPMRepositoryError error 5
You need to generate a new key since the one Xcode auto-generates is not supported... ssh-keygen -t ecdsa -C our_email pbcopy < ~/.ssh/id_ecdsa.pub Go to https://github.com/settings/ssh/new, paste the key and save. Go to Xcode -> Preferences -> Sign into the github account if not already. Select SSH for Clone using For SSH Key select id_ecdsa.
Replies
Boosts
Views
Activity
Mar ’22
Reply to How can we create class diagram in Xcode 7 and above?
Found this ; they mention OmniGraffle, but it seems to have limitsanda freeware (github, so you could customize):h ttps://stackoverflow.com/questions/29186136/uml-class-diagrams-for-xcode-swift-programmingEditedI tested, it's very interesting ; clearly, the set up on the page could be improved (up to us to improve the freeware), but a very good starting point.
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’17
Reply to Crash by SwiftData MigarionPlan
I just tried logging an error.localizedDescription in TestFlight and got : Could not create ModelContainer: The operation couldn’t be completed. I also tried adding -com.apple.CoreData.MigrationDebug 1 to the launch arguments, but there was no CoreData: error: ... in the Xcode console. I created a new project and copied the MigraitonPlan-related code from my code into it and uploaded it to Github. TestDemo
Topic: App & System Services SubTopic: iCloud Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Xcode doesn't support iOS 14.5.1
You can add support for iOS 14.5 (and watchOS 7.4) by copying the relevant DeviceSupport folders from Xcode 12.5 to Xcode 12.4. For example the one for iOS 14.5 is located at is Xcode.app/Contents/Developer/iPhoneOS.platform/DeviceSupport/14.5 You can download the xip for Xcode 12.5 from here: https://developer.apple.com/download/more/?=xcode and extract that folder from the XCode.app inside it and move it to your installed XCode.app. There are also publicly hosted GitHub repositories with these folders, a quick search will turn them up. It is obviously better to extract it from the official source yourself, but I think the archives are signed anyways.
Replies
Boosts
Views
Activity
May ’21
Reply to Xcode Server no longer includes the capacity to host Git repositories.
>it's pretty straightforward to just use git and ssh on the server. I never used the xcode server option for it - are you really losing anything (besides time having to set up something new)? I have a ton of self hosted git repositories set up on my Xcode Server and having to set up remotes elsewhere or to configure them from the command line is a a time consuming task. Just a coulple clicks in the GUI was pretty nice.>But I am sincerely curious. Mostly just want to encourage you to look into setting it up yourself as a git+ssh type thing before you feel like you have no option besides switching to paid setup.Paying Github to host private repositories was never going to happen from me. But don't kid yourself, they made a deal with them for this integrated setup in Xcode 9 and money was involved. Self-hosting repositories is an easy way to not pay Github, so I bet they agreed with them to remove the feature in exchange for that open in xcode stuff on
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’17
Reply to Custom Errors
I tried the code you last posted in new project (both Xcode 8.3.3 and Xcode 9, Swift 3.x and 4) and it works fine. At this point, I'd say the problem is not the ExamineError declaration, but something else is going wrong in your project. If you're using a current version of Xcode, I'd suggest you submit a bug report and see what comes back.Incidentally, just for interest, you could try:catch { let e = error as! ExamineError print (type(of: e)) }and see what it says.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Error Analyzing App Version
hey guys! what helped me is running build inside Xcode until I debugging all the critical warnings such as e.g. missing ipad icon 152 x 152. after that, the upload went smoothly! so you'll likely to see the error when there are issues with your Info.plist, icon images, essentially anything really:) happy coding! niko
Replies
Boosts
Views
Activity
Jun ’22
Reply to Building macOS with App Groups using external CI/CD
I'm also experiencing this issue so I figured I'd throw my own details on here in case they help. I am building a macOS System / Network Extension. I can build locally with both Development and Developer ID keys using XCode. As soon as I move towards xcodebuild (locally), I need to have the provisioning profile installed by downloading it from the Developer Portal and double-clicking it, etc. xcodebuild -scheme Extension -configuration Release -destination generic/platform=macOS The exact problem rookuuu has happens when I attempt to build in my CI pipeline with the exact same provisioning profile and key. Specifically GitHub Actions + GitHub-Hosted Runners using GitHub instructions for installing profiles. If I remove the profiles locally on my machine and attempt to install the provisioning profile using GitHub instructions (rename {ProfileName}.provisionprofile to {ProfileGuid}.mobileprovision and add to ~/Library/MobileDevice/Provisioning Profiles) it has the s
Replies
Boosts
Views
Activity
Jun ’23
Reply to Unresolved Spilt View problem?
Can you push github link?
Replies
Boosts
Views
Activity
Mar ’18
Reply to How can I call error recovery?
github? dropbox? tinyupload?
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Xcode 8 release crashes on old xib files
I have the exact same issue. Any help would be greatly appreciated!If it''s of any help, my Xcode crash log is overe here gist [dot] github [dot] com [slash] thomax [slash] b338a8d02fb0c230fb1ec8e6cda41be9. Sorry for mangling that URL, but it seems the only way to avoid the moderation flag, and moderation around here seems to take a while.
Replies
Boosts
Views
Activity
Sep ’16
Reply to Problems after updating to Xcode 13.3
UPDATE 3: The problem with iCloud returned. Changing my Apple ID password doesn't seem to have any effect. Every time I restart the mac and log in, iCloud asks me to log in like it's the first time. Mail no longer has the password for my email account. Added to this is the verification of Xcode as well as other applications. Xcode keeps asking me to install components like it's the first time. On Xcode I also have to reconnect to my gitlab and github accounts. This is really hell!!! It's a nightmare !!!
Replies
Boosts
Views
Activity
Mar ’22
Reply to Animated blueprint of Solid-State Lithium Metal Battery
This is not github
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to MacOs Drops Github Credentials
I have same problem when access my company bitbucket after upgrade to MacOS Ventura beta8, but when i try to access my personal github repo, it works fine.Anyone have an idea? additional: i can access my company repo use Xcode, but when i use git tools in Terminal,it give me Permission denied (publickey). So weird.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Connecting Python 3.8 with Xcode 11
Got this from github and seems to work.How to use Xcode IDE for Python developmentOpen Xcode and start with creating a new project: From the templates, choose Cross-platform > External Build System Give it a name. You can update Organizatin Name and Identifier if you want. Make sure you enter a correct path for Python bin. For Python 3.x it's usually /usr/bin/pythonw. Click Next and save it. Open scheme editor, select Run from the left hand pane, and Info tab from the detail pane. From Executable menu, select Other... and navigate to where your Python executable binary is locate. That's the same location you entered in step 4, e.g. /usr/bin/pythonw. You can also use **** + Command + G and paste the address in the dialog box. Uncheck Debug executable box. Still in Run menu, select Arguments tap, and add a new entry to Arguments Passed on Launch. This is the name of the file where you'll write your Python code in it. You'll create the file later. Still in Run menu
Replies
Boosts
Views
Activity
Jan ’20