Search results for

“xcode github”

97,551 results found

Post

Replies

Boosts

Views

Activity

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 Failed to load owners error using GitHub
Was having the same problem. I didn't have anything from Github in my Keychain – the problem was with my Personal Access Token. I had left all of the checkboxes empty at first, but then re-signed in after checking all the checkboxes to allow for permissions to be granted through the token ... it worked right away after that! [https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line] Definitely second viewing this link if you are having this issue.
Jan ’21
Reply to Playing Audio
Hi,I have created a demo for you, which demonstrate how you can use NSNotificationCenter in your app. Please search amitanmol/NSNotificationCenterDemo on github to download and test. Let me know if you face any issue or need any help. You can raise any issue on my github account also for this.
Jun ’17
Reply to Rotate View around an other View SwiftUI
I tested your code and it works perfectly. The orange triangle is not always at the same distance, but it turns all around. Tested with Xcode 13.0ß5 iPhone 12 Pro Max - iOS 15.0 simulator. Here are some screen shots: So, what is the problem ? Is it the distance to the circle ? Replacing offset .offset(x: 0, y: -170) with .offset(x: 0, y: -220) keeps equal distance. Then you will have to adapt path to stick to the circle. To get in radians, just replace .rotationEffect(.degrees: degrees) , … by .rotationEffect(.radians(someradValue), …
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’21
Reply to iMessage extension crash in simulator
I've been working on a rich iMessage app for over a year.Give up on testing in the simulator - it crashes reliably in every XCode version with iMessage when you call dismiss()Note that there is also a bug with XCode if you have the permission keys allowing you access to the camera - that causes crashes trying to debug your app even on device.I have a few very tiny samples on github testing different aspects of the iMessage SDK which may help folks.
Topic: App & System Services SubTopic: General Tags:
Jun ’19
Reply to what are the best practices to implement high level of Authorization and authentication for iOS apps?
Emma:...seems that there should be better practices rather than hard coded client Id and Client Secret key.Perhaps a later Xcode than v7.x, for starters, where your app could better leverage current APIs - example: Touch or Face ID might better meet your spec, where hard coded id and secret key are fallbacks, instead.This assumes you've already evaluated iOS Security, in general, of course.Ken
Oct ’17
Reply to Xcode Extension isn't show up in the Editor menu
So, it looks like having multiple versions of Xcode on the same machine (Xcode 16.2 release plus a couple of betas for 16.3) means this doesn't show up. @DTS Engineer Is there a way to do this while having multiple versions of Xcode? I found this Github thread but it doesn't seem to work for me: https://github.com/nicklockwood/SwiftFormat/issues/494#issuecomment-547101989 I've also tried the trick of renaming Xcode.app and moving it in and out of the Applications directory to (allegedly) refresh some cache somewhere but no luck
Mar ’25
Reply to How to improve MPSMatrixMultiplication performance?
Hi, Just today I was compiling the code by swiftc -O test.swift. The swiftc version is 5.4 from the most recent 12.5 Xcode distributed along with macOS Big Sur 11.3. Now I only get 119 GFlops. In 11.2.x I got 4500 GFlops with exactly the same code on my Mac Pro 2019 with AND Radeon Vega II. Does anybody else observes the same behavior? Best regards
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’21
Reply to Xcode unsupported iOS version after beta update 14.5 error 18e5140k
hello everyone, i solved the problem by adding iOS 14.5 the device support file inside the Xcode app in path contents/Developer/platform/iPhoneOS.platform/DeviceSupport You can download it from GitHub - https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport or you can download the new beta version and grab the directory from it.
Replies
Boosts
Views
Activity
Feb ’21
Reply to Certain files giving NSOSStatusErrorDomain Code=-54
Nice case for a playground:import Foundation let x = NSError(domain: NSOSStatusErrorDomain, code:-54, userInfo:nil ) print((x))// Error Domain=NSOSStatusErrorDomain Code=-54 permErr: permissions error (on file open)Jan E.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jan ’16
Reply to Safari 8.1 pinned tabs icons are not loaded
Even under Safari 9.0, under El Cap, it seems pretty flaky. Twitter's icon shows up, but GitHub's doesn't (and GitHub definitely has the valid markup for it in ther site's HTML).
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15
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
Reply to Failed to load owners error using GitHub
Was having the same problem. I didn't have anything from Github in my Keychain – the problem was with my Personal Access Token. I had left all of the checkboxes empty at first, but then re-signed in after checking all the checkboxes to allow for permissions to be granted through the token ... it worked right away after that! [https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line] Definitely second viewing this link if you are having this issue.
Replies
Boosts
Views
Activity
Jan ’21
Reply to Playing Audio
Hi,I have created a demo for you, which demonstrate how you can use NSNotificationCenter in your app. Please search amitanmol/NSNotificationCenterDemo on github to download and test. Let me know if you face any issue or need any help. You can raise any issue on my github account also for this.
Replies
Boosts
Views
Activity
Jun ’17
Reply to Anyone Notified of Developer Kit Selection?
Github it...maybe someone will test for you?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
Reply to Rotate View around an other View SwiftUI
I tested your code and it works perfectly. The orange triangle is not always at the same distance, but it turns all around. Tested with Xcode 13.0ß5 iPhone 12 Pro Max - iOS 15.0 simulator. Here are some screen shots: So, what is the problem ? Is it the distance to the circle ? Replacing offset .offset(x: 0, y: -170) with .offset(x: 0, y: -220) keeps equal distance. Then you will have to adapt path to stick to the circle. To get in radians, just replace .rotationEffect(.degrees: degrees) , … by .rotationEffect(.radians(someradValue), …
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to iMessage extension crash in simulator
I've been working on a rich iMessage app for over a year.Give up on testing in the simulator - it crashes reliably in every XCode version with iMessage when you call dismiss()Note that there is also a bug with XCode if you have the permission keys allowing you access to the camera - that causes crashes trying to debug your app even on device.I have a few very tiny samples on github testing different aspects of the iMessage SDK which may help folks.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’19
Reply to what are the best practices to implement high level of Authorization and authentication for iOS apps?
Emma:...seems that there should be better practices rather than hard coded client Id and Client Secret key.Perhaps a later Xcode than v7.x, for starters, where your app could better leverage current APIs - example: Touch or Face ID might better meet your spec, where hard coded id and secret key are fallbacks, instead.This assumes you've already evaluated iOS Security, in general, of course.Ken
Replies
Boosts
Views
Activity
Oct ’17
Reply to Xcode Extension isn't show up in the Editor menu
So, it looks like having multiple versions of Xcode on the same machine (Xcode 16.2 release plus a couple of betas for 16.3) means this doesn't show up. @DTS Engineer Is there a way to do this while having multiple versions of Xcode? I found this Github thread but it doesn't seem to work for me: https://github.com/nicklockwood/SwiftFormat/issues/494#issuecomment-547101989 I've also tried the trick of renaming Xcode.app and moving it in and out of the Applications directory to (allegedly) refresh some cache somewhere but no luck
Replies
Boosts
Views
Activity
Mar ’25
Reply to How to improve MPSMatrixMultiplication performance?
Hi, Just today I was compiling the code by swiftc -O test.swift. The swiftc version is 5.4 from the most recent 12.5 Xcode distributed along with macOS Big Sur 11.3. Now I only get 119 GFlops. In 11.2.x I got 4500 GFlops with exactly the same code on my Mac Pro 2019 with AND Radeon Vega II. Does anybody else observes the same behavior? Best regards
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’21
[Ask] Can't install X code 9.3 on high sierra 10.13.4
Hello everyone,I'm new user for mac and i want to learn develop with X Code.I download and already finish download but when try to install it's failed.The error message is Use purchase page to try againI'm using MBP 15 MPPT2LL.What should I do ?
Replies
3
Boosts
0
Views
611
Activity
May ’18
Reply to Button resizing issues
Could you post the code on gitHub ?
Replies
Boosts
Views
Activity
Jun ’17
Reply to How could I create an app that turns on the heart rate sensor when a switch is turned on?
search github WatchOS3 Heartrate
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’17