Search results for

“xcode github”

97,545 results found

Post

Replies

Boosts

Views

Activity

Reply to Dictionary Wrapper for Custom Types
How are you testing this? I copied your code into a new test project (created from the OS X > Command Line Tool template) and it worked just fine.k: 2, v: Green k: 3, v: Blue k: 1, v: Red Program ended with exit code: 0This is with Xcode 7.0 on OS X 10.10.5.Share and Enjoy — Quinn The Eskimo! Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’15
Xcodebuild Archive fails to errSecInternalComponent in GitHub Action
Hi! I have an issue to build Archive when using xcodebuild in GitHub Action workflow. The project s quite basic iOS project. Archiving works fine locally using command xcodebuild -quiet -workspace MyProject.xcworkspace -scheme MyProject Release clean archive -configuration release -destination=generic/platform=iOS -archivePath MyProject.xcarchive Same command via SSH gives an error errSecInternalComponent. Command CodeSign failed with a nonzero exit code IF I run a command security unlock-keychain beforehand, then creating .xcarchive passes. In Keychain Access, I have necessary certificates. Those are located in login.keychain and every certificate seems to be valid. Also, based on this answer, I have tried to put 6 different Apple Worldwide Developer Relations Certification Authority -certs in System.keychain and removed same stuff from login.keychain. This didn't bring solution either. Our GitHub (Enterprise) Action workflow is quite simple (here is an extract): name: Build_Tests on: push:
4
0
3.4k
Oct ’22
Reply to Xcode 9: Symbol not found: _utimensat
Apparently you have to have the XCode command-line tools installed to get this running. I found a Github Issue with some comments. First I deleted rbenv (I'm running brew) and then I ran xcode-select --install to install the command-line tools. Once done I reinstalled rbenv and was able to rbenv install 2.3.0 fine after that.
Sep ’17
🤔 GitHub tensorflow macOS alpha had better performance on M1?
Hello, I noticed a substantial decrease in performance compared to previous releases of tensorflow for M1 Macs. I previously installed the alpha release of tensorflow for M1 from GitHub, found here: https://github.com/apple/tensorflow_macos and was very impressed by the performance. I used the following script to benchmark my M1 Mac and other systems: https://gist.github.com/tampapath/662aca8cd0ef6790ade1bf3c23fe611a#file-fashin_mnist-py Running the alpha release from GitHub, my M1 Mac handsomely outperformed both google colab's random GPU offerings and an RTX 2070 windows computer. Recently, I went back to the GitHub repository, looking for new updates on tensorflow support for the M1 and was redirected here to the tensorflow-metal PluggableDevices installation guide: https://developer.apple.com/metal/tensorflow-plugin/ After installing the conda environment and running the same benchmark script, I realized my M1 systems's was running much slower. Additionally, the following error
7
0
4.1k
Aug ’21
Reply to Can you use apple developer programs like swift or X code on a pc?
Swift is open source and availible at: https://swift.org/It doesn't look that there is a offical Windows download on the site but it should be possibile to get it to run, especially considering the recent support for Unix command line tools on Windows. I would recomend a bit of googling.Xcode requiers a mac running OS X. I would highly recommend a mac that can run the latest version of OS X so that you can run the latest version of Xcode. Note that some of the tools used by Xcode e.g. clang (the C/C++/Objective-C compiler) are open source and can be run on other OSes. What Xcode gives you is access to the OS X frameworks (code libariaries) to e.g. build the app GUI (Graphical User Interface). Also note that it may be eaiser to get tools like clang and swift running on Linux, rather than Windows, as Linux and OS X are more closely related - they are both Unix like OSes.
Topic: Programming Languages SubTopic: Swift Tags:
May ’16
Reply to Unable to use ARGeoTrackingConfiguration when launching a new AR Session in the app - 15.4 (and 15.41.)
@glow it sounds like a bad bug. The sample code from 14.0 is breaking in 15.4. Apple DTS told us there is no workaround. That's… not a good sign. It's possible the next version of Xcode builds and compiles to retcon a fix on 15.4.x. It's either an official fix from a new SDK, an unofficial fix in the form of discovering some kind of hacky private API to fix 15.4.x, or engineers just have to permanently gate their users from ARGeoTrackingConfiguration on 15.4.x.
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’22
Reply to How to disable automatic modification of struct to enum in my code
The reason has been found!!! It should be using GitHub desktop. After repeated testing. It's because of the GitHub desktop.
Replies
Boosts
Views
Activity
Nov ’24
Reply to publish my game
There is a clear explanation on how to generate a SSH key on the GitHub Help website: https://help.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#generating-a-new-ssh-key
Replies
Boosts
Views
Activity
Jun ’20
Reply to Dictionary Wrapper for Custom Types
How are you testing this? I copied your code into a new test project (created from the OS X > Command Line Tool template) and it worked just fine.k: 2, v: Green k: 3, v: Blue k: 1, v: Red Program ended with exit code: 0This is with Xcode 7.0 on OS X 10.10.5.Share and Enjoy — Quinn The Eskimo! Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’15
Reply to xcode-beta 7 hang fix?
Correction: I was able to restore El Capitan Beta 45 from Time Machine and things are working again with XCode 7 Beta 4. Pushing my work to github allowed me to not miss much, but it's a drag.I hope they can fix this soon!
Replies
Boosts
Views
Activity
Aug ’15
Reply to [iOS 18] Scrolling behavior does not work only when built in Xcode 16
@DTS Engineer I used Sample Code above to run from Xcode 16.1 beta 3 to iOS 18.1 simulator, but the same issue is reproduced. However, for iOS 17.x versions in the same environment, it works seamlessly and well.
Replies
Boosts
Views
Activity
Oct ’24
Reply to C++ Linker Error on M1 Mac running Hello World Program
I uninstalled X-Code and re-installed Code Runner 4, which resolved the problem... I was not using X-Code anyway... Cheers, Leandro Meinhardt
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’23
Xcodebuild Archive fails to errSecInternalComponent in GitHub Action
Hi! I have an issue to build Archive when using xcodebuild in GitHub Action workflow. The project s quite basic iOS project. Archiving works fine locally using command xcodebuild -quiet -workspace MyProject.xcworkspace -scheme MyProject Release clean archive -configuration release -destination=generic/platform=iOS -archivePath MyProject.xcarchive Same command via SSH gives an error errSecInternalComponent. Command CodeSign failed with a nonzero exit code IF I run a command security unlock-keychain beforehand, then creating .xcarchive passes. In Keychain Access, I have necessary certificates. Those are located in login.keychain and every certificate seems to be valid. Also, based on this answer, I have tried to put 6 different Apple Worldwide Developer Relations Certification Authority -certs in System.keychain and removed same stuff from login.keychain. This didn't bring solution either. Our GitHub (Enterprise) Action workflow is quite simple (here is an extract): name: Build_Tests on: push:
Replies
4
Boosts
0
Views
3.4k
Activity
Oct ’22
Reply to Xcode 9: Symbol not found: _utimensat
Apparently you have to have the XCode command-line tools installed to get this running. I found a Github Issue with some comments. First I deleted rbenv (I'm running brew) and then I ran xcode-select --install to install the command-line tools. Once done I reinstalled rbenv and was able to rbenv install 2.3.0 fine after that.
Replies
Boosts
Views
Activity
Sep ’17
Reply to Core Data - Binary datastores with transformable attributes will not open
I've managed to replicate the error in a clean xcode project. The problem is related to Binary Data Stores and only occurs in iOS 11. I will file a radar.I created a github demonstrating the problem that you can access here:https://github.com/seriouscyrus/CoreDataTransformableAttribBug
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’17
Reply to Run and test app with a github project
>is possible to use the xcode simulator with the project?Yes, assuming compatibility, etc. >can i test the app of the github project on my iphone?Yes, assuming compatibility, etc. How you do so depends on if you use free or paid provisioning, however. Do you have a paid Developer Account?
Replies
Boosts
Views
Activity
May ’17
Reply to Xcode 13.2 - Internal error : Missing Package Description Module
Isn't this the one where you have to remove the IDESourceControlKnownSSHHostsDefaultsKey key from ~/Library/Preferences/com.apple.dt.Xcode.plist ? IIRC I had to do this after upgrading to 13.x. https://forums.swift.org/t/according-to-xcode-the-identity-of-a-repository-hosted-on-github-com-has-changed/53560/6
Replies
Boosts
Views
Activity
Dec ’21
🤔 GitHub tensorflow macOS alpha had better performance on M1?
Hello, I noticed a substantial decrease in performance compared to previous releases of tensorflow for M1 Macs. I previously installed the alpha release of tensorflow for M1 from GitHub, found here: https://github.com/apple/tensorflow_macos and was very impressed by the performance. I used the following script to benchmark my M1 Mac and other systems: https://gist.github.com/tampapath/662aca8cd0ef6790ade1bf3c23fe611a#file-fashin_mnist-py Running the alpha release from GitHub, my M1 Mac handsomely outperformed both google colab's random GPU offerings and an RTX 2070 windows computer. Recently, I went back to the GitHub repository, looking for new updates on tensorflow support for the M1 and was redirected here to the tensorflow-metal PluggableDevices installation guide: https://developer.apple.com/metal/tensorflow-plugin/ After installing the conda environment and running the same benchmark script, I realized my M1 systems's was running much slower. Additionally, the following error
Replies
7
Boosts
0
Views
4.1k
Activity
Aug ’21
Reply to [iOS26 Bug] UITableView AutomaticDemension not respected unless backgroundColor is set
Apologies — the GitHub link in the original post was incorrect. Here’s the correct one: Sample Project on GitHub
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Aug ’25
Reply to Can you use apple developer programs like swift or X code on a pc?
Swift is open source and availible at: https://swift.org/It doesn't look that there is a offical Windows download on the site but it should be possibile to get it to run, especially considering the recent support for Unix command line tools on Windows. I would recomend a bit of googling.Xcode requiers a mac running OS X. I would highly recommend a mac that can run the latest version of OS X so that you can run the latest version of Xcode. Note that some of the tools used by Xcode e.g. clang (the C/C++/Objective-C compiler) are open source and can be run on other OSes. What Xcode gives you is access to the OS X frameworks (code libariaries) to e.g. build the app GUI (Graphical User Interface). Also note that it may be eaiser to get tools like clang and swift running on Linux, rather than Windows, as Linux and OS X are more closely related - they are both Unix like OSes.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’16
Reply to Unable to use ARGeoTrackingConfiguration when launching a new AR Session in the app - 15.4 (and 15.41.)
@glow it sounds like a bad bug. The sample code from 14.0 is breaking in 15.4. Apple DTS told us there is no workaround. That's… not a good sign. It's possible the next version of Xcode builds and compiles to retcon a fix on 15.4.x. It's either an official fix from a new SDK, an unofficial fix in the form of discovering some kind of hacky private API to fix 15.4.x, or engineers just have to permanently gate their users from ARGeoTrackingConfiguration on 15.4.x.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’22