Search results for

“xcode github”

95,434 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
279
Jul ’17
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 Crash by SwiftData MigarionPlan
I just tried logging an error.localizedDescription in TestFlight and got : Could not create ModelContainer: The operation couldn’t be completed. I also tried adding -com.apple.CoreData.MigrationDebug 1 to the launch arguments, but there was no CoreData: error: ... in the Xcode console. I created a new project and copied the MigraitonPlan-related code from my code into it and uploaded it to Github. TestDemo
Jul ’24
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 Building macOS with App Groups using external CI/CD
I'm also experiencing this issue so I figured I'd throw my own details on here in case they help. I am building a macOS System / Network Extension. I can build locally with both Development and Developer ID keys using XCode. As soon as I move towards xcodebuild (locally), I need to have the provisioning profile installed by downloading it from the Developer Portal and double-clicking it, etc. xcodebuild -scheme Extension -configuration Release -destination generic/platform=macOS The exact problem rookuuu has happens when I attempt to build in my CI pipeline with the exact same provisioning profile and key. Specifically GitHub Actions + GitHub-Hosted Runners using GitHub instructions for installing profiles. If I remove the profiles locally on my machine and attempt to install the provisioning profile using GitHub instructions (rename {ProfileName}.provisionprofile to {ProfileGuid}.mobileprovision and add to ~/Library/MobileDevice/Provisioning Profiles) it has the s
Jun ’23
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 MacOs Drops Github Credentials
I have same problem when access my company bitbucket after upgrade to MacOS Ventura beta8, but when i try to access my personal github repo, it works fine.Anyone have an idea? additional: i can access my company repo use Xcode, but when i use git tools in Terminal,it give me Permission denied (publickey). So weird.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
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 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 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 Problems after updating to Xcode 13.3
UPDATE 3: The problem with iCloud returned. Changing my Apple ID password doesn't seem to have any effect. Every time I restart the mac and log in, iCloud asks me to log in like it's the first time. Mail no longer has the password for my email account. Added to this is the verification of Xcode as well as other applications. Xcode keeps asking me to install components like it's the first time. On Xcode I also have to reconnect to my gitlab and github accounts. This is really hell!!! It's a nightmare !!!
Mar ’22
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
279
Activity
Jul ’17
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 Crash by SwiftData MigarionPlan
I just tried logging an error.localizedDescription in TestFlight and got : Could not create ModelContainer: The operation couldn’t be completed. I also tried adding -com.apple.CoreData.MigrationDebug 1 to the launch arguments, but there was no CoreData: error: ... in the Xcode console. I created a new project and copied the MigraitonPlan-related code from my code into it and uploaded it to Github. TestDemo
Replies
Boosts
Views
Activity
Jul ’24
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 Building macOS with App Groups using external CI/CD
I'm also experiencing this issue so I figured I'd throw my own details on here in case they help. I am building a macOS System / Network Extension. I can build locally with both Development and Developer ID keys using XCode. As soon as I move towards xcodebuild (locally), I need to have the provisioning profile installed by downloading it from the Developer Portal and double-clicking it, etc. xcodebuild -scheme Extension -configuration Release -destination generic/platform=macOS The exact problem rookuuu has happens when I attempt to build in my CI pipeline with the exact same provisioning profile and key. Specifically GitHub Actions + GitHub-Hosted Runners using GitHub instructions for installing profiles. If I remove the profiles locally on my machine and attempt to install the provisioning profile using GitHub instructions (rename {ProfileName}.provisionprofile to {ProfileGuid}.mobileprovision and add to ~/Library/MobileDevice/Provisioning Profiles) it has the s
Replies
Boosts
Views
Activity
Jun ’23
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 MacOs Drops Github Credentials
I have same problem when access my company bitbucket after upgrade to MacOS Ventura beta8, but when i try to access my personal github repo, it works fine.Anyone have an idea? additional: i can access my company repo use Xcode, but when i use git tools in Terminal,it give me Permission denied (publickey). So weird.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’22
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 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 Unresolved Spilt View problem?
Can you push github link?
Replies
Boosts
Views
Activity
Mar ’18
Reply to How can I call error recovery?
github? dropbox? tinyupload?
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’17
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
600
Activity
May ’18
Reply to Problems after updating to Xcode 13.3
UPDATE 3: The problem with iCloud returned. Changing my Apple ID password doesn't seem to have any effect. Every time I restart the mac and log in, iCloud asks me to log in like it's the first time. Mail no longer has the password for my email account. Added to this is the verification of Xcode as well as other applications. Xcode keeps asking me to install components like it's the first time. On Xcode I also have to reconnect to my gitlab and github accounts. This is really hell!!! It's a nightmare !!!
Replies
Boosts
Views
Activity
Mar ’22