Search results for

“xcode github”

98,152 results found

Post

Replies

Boosts

Views

Activity

Xcode beta that I downloaded from the Apple Developer porter is modified to be ciontrolled my a remote user and do some nast things to my machine. What should I do with this. You guys need to see what these hackers can do to our x-code. I have a copy I
Hi Xcode DeveloperI need some help. Can someone who can fix xcode exploits give me somewhere to send this, it's nasty. I have an xcode server that Ineed to keep running
0
0
284
Jul ’17
Reply to How can I compile this app?
The missing files are found in a couple of Git submodules which don’t seem to get cloned if you use GitHub’s Open with Xcode or Download ZIP options, or a normal git clone command. It works if you use git clone --recursive like this: $ git clone --recursive git@github.com:macmade/QEMU-Manager.git
Jan ’22
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 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 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 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 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
Xcode beta that I downloaded from the Apple Developer porter is modified to be ciontrolled my a remote user and do some nast things to my machine. What should I do with this. You guys need to see what these hackers can do to our x-code. I have a copy I
Hi Xcode DeveloperI need some help. Can someone who can fix xcode exploits give me somewhere to send this, it's nasty. I have an xcode server that Ineed to keep running
Replies
0
Boosts
0
Views
284
Activity
Jul ’17
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 Keyserver on Windows?
Is it possible to share it on github?
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Feb ’20
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 How can I compile this app?
The missing files are found in a couple of Git submodules which don’t seem to get cloned if you use GitHub’s Open with Xcode or Download ZIP options, or a normal git clone command. It works if you use git clone --recursive like this: $ git clone --recursive git@github.com:macmade/QEMU-Manager.git
Replies
Boosts
Views
Activity
Jan ’22
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 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 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 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 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
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
[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
613
Activity
May ’18
Reply to Button resizing issues
Could you post the code on gitHub ?
Replies
Boosts
Views
Activity
Jun ’17