Search results for

“xcode github”

96,036 results found

Post

Replies

Boosts

Views

Activity

Reply to System Extension crashing
Ah, still there are some subtle diffences that I don't understand...If I create a command line App from the EP sec example from Okram's github, I can debug thru xcode ( once I launched the xcode from root's command line). But it does not work ( i.e. superuser privilage fails ) when I try the same steps with the Firewall extension that has the same code embedded in it.-prokash
Topic: App & System Services SubTopic: Drivers Tags:
Jan ’20
Reply to Xcode on iPad?
Is there a way of coding and publishing apps on a iPad natively? NO. Is there any plans of Xcode coming to iPad? Apple rarely talks about future plans of development system, except in WWDCs. And Apple has not announced any of such plans till now. You should better check this old thread: Xcode for iPad Pro - https://developer.apple.com/forums/thread/17585 Or this relatively new thread: Will X Code be coming to the ipad Pro ? - https://developer.apple.com/forums/thread/652028
Nov ’20
Reply to Load a 3D Model from internet?
The Preview application uses Scene Kit to preview Collada files, so it does work on OS X. I also it witnessed it my own apps. I've never heard of Xcode optimizing Collada files.Either it does not work properly on iOS or your downloading code is buggy. Which error do you get, by the way ?
Topic: Graphics & Games SubTopic: SceneKit Tags:
Feb ’16
400, 401 and 403 errors whilst trying to fetch private repos from Github API.
Just as a buffer, I’m not super familiar with anything other than iOS development and don’t have a fat lot of experience with oAuth but I was trying to make a little personal app which includes signing in with GitHub (using oAuth) and then making a request to fetch my private repos. I’ve hit a wall, I’m absolutely stumped and I'm looking for some pointers. I’ve been reading the documentation on GitHub for most of the day and still can’t grasp what the actual issue is. I’ve tried copious different url request variants and I whilst I can return my public repos, I keep hitting a while wall whilst trying to get a list of ALL my repos, including private repos. https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-repositories-for-the-authenticated-user I’ve been followed the api docs for getting the list of repos for an authenticated users. I can see I have complete read write access for all private repos for my register ‘GitHub oAuth App’. I have my access token which h
1
0
739
Apr ’23
Reply to Saving a project swift UI WITH Xcode and playing again
I'd definitely get started with using the tools in Xcode, and review the link to the docs I shared: https://developer.apple.com/documentation/xcode/source-control-management. The for the most part, if you're remaining local, you only have to worry about committing the changes. When you do want to start working with GitHub, I believe their free account supports private repositories, so you don't have to share your code with the world.
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’24
Reply to ld: cannot link directly with dylib/framework, your binary is not an allowed client of /Applications/Xcode-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework/XCTAutomationSuppor
There is a solution/workaround in this post in Appium's GitHub from July 2022: Issue 17174's comment in appium/appium GitHub Nevermind, it looks like it was unrelated.
Replies
Boosts
Views
Activity
Sep ’22
Reply to Documentation about Xcode 7 UI tests
I scraped the XCTest headers to create documentation. You can view the docs online or download them and add to Dash from Github. The script is documented on Github if you want to scrape them yourself.Online DocsGithub
Replies
Boosts
Views
Activity
Dec ’15
Reply to System Extension crashing
Ah, still there are some subtle diffences that I don't understand...If I create a command line App from the EP sec example from Okram's github, I can debug thru xcode ( once I launched the xcode from root's command line). But it does not work ( i.e. superuser privilage fails ) when I try the same steps with the Firewall extension that has the same code embedded in it.-prokash
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Jan ’20
Reply to Should .gitignore file contain anything about provisioning profile ?
The provisioning profile is located in your keychain so is not part of the project.As for gitignore, I use the Objective C template located on github at github.com/github/gitignore.
Replies
Boosts
Views
Activity
Aug ’15
Reply to macOS 26: Menu bar icon not showing for Python app running PySide6
Thank you Quinn! You'd need to be logged in into GitHub to see the download button. I sent you the DMG via email in case you don't have a GitHub account.
Replies
Boosts
Views
Activity
Nov ’25
Reply to Xcode on iPad?
Is there a way of coding and publishing apps on a iPad natively? NO. Is there any plans of Xcode coming to iPad? Apple rarely talks about future plans of development system, except in WWDCs. And Apple has not announced any of such plans till now. You should better check this old thread: Xcode for iPad Pro - https://developer.apple.com/forums/thread/17585 Or this relatively new thread: Will X Code be coming to the ipad Pro ? - https://developer.apple.com/forums/thread/652028
Replies
Boosts
Views
Activity
Nov ’20
Can I use swift with 3rd party SDK, or should I look only for programming with X-code!?
Just a general question, can i use swift together wit 3rd party SDK.So if not, I will look only into the Xcode....I have SDK for a mindwave mobile plus device, which I would like to connect to. Many thanks in advance.
Replies
2
Boosts
0
Views
1.5k
Activity
Dec ’17
Reply to Unable to use Leaks in Instruments
(I think my reply got moderated for having a URL in it)I'm building the app in Xcode using Product->Profile.If it helps, the app is open source. It lives on GitHub in Hammerspoon/hammerspoon (note that to build it you need to pip install -r requirements.txt for something the docs need)
Replies
Boosts
Views
Activity
Jul ’18
Reply to iOS 16.1.1 Support for XCode run destination
hello, I worked around the same problem. The solution that I found was adding iOS 16.1 the device support file inside the Xcode app in path contents/Developer/platform/iPhoneOS.platform/DeviceSupport You can download it from GitHub or you can download the new beta version and grab the directory from it.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to xcodebuild[56491:10396296] [MT] DVTAssertions: Warning in Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103
I got a bunch of these warnings when building a React Native project on a GitHub-hosted Mac runner with macOS 13 and Xcode 15.0.1, but it did eventually succeed (total job time was 25 minutes). Not sure if the number of Swift files affects the outcome, but it's possible.
Replies
Boosts
Views
Activity
Oct ’23
Reply to Load a 3D Model from internet?
The Preview application uses Scene Kit to preview Collada files, so it does work on OS X. I also it witnessed it my own apps. I've never heard of Xcode optimizing Collada files.Either it does not work properly on iOS or your downloading code is buggy. Which error do you get, by the way ?
Topic: Graphics & Games SubTopic: SceneKit Tags:
Replies
Boosts
Views
Activity
Feb ’16
400, 401 and 403 errors whilst trying to fetch private repos from Github API.
Just as a buffer, I’m not super familiar with anything other than iOS development and don’t have a fat lot of experience with oAuth but I was trying to make a little personal app which includes signing in with GitHub (using oAuth) and then making a request to fetch my private repos. I’ve hit a wall, I’m absolutely stumped and I'm looking for some pointers. I’ve been reading the documentation on GitHub for most of the day and still can’t grasp what the actual issue is. I’ve tried copious different url request variants and I whilst I can return my public repos, I keep hitting a while wall whilst trying to get a list of ALL my repos, including private repos. https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-repositories-for-the-authenticated-user I’ve been followed the api docs for getting the list of repos for an authenticated users. I can see I have complete read write access for all private repos for my register ‘GitHub oAuth App’. I have my access token which h
Replies
1
Boosts
0
Views
739
Activity
Apr ’23
Reply to Saving a project swift UI WITH Xcode and playing again
I'd definitely get started with using the tools in Xcode, and review the link to the docs I shared: https://developer.apple.com/documentation/xcode/source-control-management. The for the most part, if you're remaining local, you only have to worry about committing the changes. When you do want to start working with GitHub, I believe their free account supports private repositories, so you don't have to share your code with the world.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Adding a profile to Xcode broke building, pod install fails
You should continue the conversation with the Cocoapods folks in the GitHub thread you linked to. If you're able to create this error without Cocoapods being part of your project, then we'd like to see that Xcode project attached to an Apple bug report to investigate further. You can post the FB number of that bug report here.
Replies
Boosts
Views
Activity
Apr ’25
Reply to sourcecontrol.Git occupies a lot of CPU resources
here's my solution... turn off source control as described by Mougfrey, and i use github desktop app instead to do source control with github https://desktop.github.com/
Replies
Boosts
Views
Activity
Jan ’24