Search results for

xcode github

94,702 results found

Post

Replies

Boosts

Views

Activity

Reply to Custom Instruments documentation?
I've write a blog entry about this topic, create custom Instruments in Xcode 10. It's written in spanish, but I'm sure you will understand the code easilyhttp://desappstre.com/how-to-custom-instruments-xcode/And below is the link to the GitHub project repositoryhttps://github.com/fitomad/Desappstre-CustomInstruments
Nov ’18
Reply to Xcode cloud enterprise version
Hi @ericpoon2001, Great question. Today, Xcode Cloud supports self-hosted GitHub repositories and private dependencies. However, you can't host Xcode Cloud on-premise, it runs on Apple's cloud infrastructure. Please file a feature request using Feedback Assistant. Thanks!
Jun ’21
Reply to Xcode cloud Git Push on a Workflow
I'm also looking for a way to push a tag to origin whenever a build is published to TestFlight. I tried @leolobato's suggestion of using the GitHub PAT, but it was unsuccessful. After watching WWDC '21 Customize Your Advanced Xcode Cloud Workflows, it seems that the source code is not available in the environment where the post-build script is run. Therefore, I'm beginning think the path forward is to use a webhook combined with a microservice that interfaces with the GitHub API.
Aug ’22
Reply to Graphical Issue
I don't believe there is anything wrong with the code but Xcode. I do believe there is something wrong with your code. Why have you changed line 23 and 24 from the original code? x: width * segment.line.x + xOffset, y: height * segment.line.y If you want to modify some points, all other points needs to be modified consistently. Only modifying this part is making your shape broken.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’21
Reply to Swift 2.0 Minimum Target on Mac OS
I created a simple samle code using Xcode 7 on Yosemete 10.10.5, Base SDK 10.11 and Deployment Target 10.10.The app run with no problems on 10.10.2.I'm afraid your code contains some functionalities which are not available in 10.10.2 or 10.10.3, or other settings may be wrong, or you completely broke your Xcode doing `I had manually added the OS X 10.10 SDK that I took from my Xcode 6 install inside my Xcode.app bundle`.
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’15
Reply to Upgrade from xCode 14.2 to 14.3 PhaseScriptExecution failed with a nonzero exit code
I have a similar issue, it seems to be related to cocoa pods, there is a ticket about the problem here: https://github.com/CocoaPods/CocoaPods/issues/11808#issuecomment-1481244508 a pull request with a potential fix has already been submited by a github user: https://github.com/CocoaPods/CocoaPods/pull/11828 if you scroll down you will find a comment by another github user with a temporary solution which is to downgrade to xcode build tools from 14.3 to 14.2 for builds (works for both builds in the IDE and below is a screenshot for builds in the xcode cloud): https://github.com/CocoaPods/CocoaPods/issues/11808#issuecomment-1481244508
Mar ’23
Reply to What is the use of Git Hub to an app developer.
One additional benefit of Github to the ones NotMyName and KMT listed is online backup of your code. Without Github if your Mac was stolen, was destroyed in a fire, or had its hard drive/SSD go bad, you would lose your code. With Github if disaster strikes, you can buy a new Mac, clone your Github code on the new Mac, and continue to work on your app as if nothing happened.
Jul ’15