Search results for

xcode github

92,014 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode stuck waiting for device to unlock, waiting for symbols, etc.
@farajcontrollers @flarosa I have the same problem Xcode 15.0.1 and iOS 17.1.2 Does not work via USB or WiFi Already tried: 1 - Disable and activate the multiplath network in the device's developer options 2 - I updated xcode 3 - I changed USB 4 - I unpaired and paired the device 5 - I changed wifi networks to test and several other things I saw on stakoverflow and github. NOTHING YET
Dec ’23
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
258
Jul ’17
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
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 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 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 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 How To Get Assembler Listing Of C++ Program In Xcode
Answering a slightly different question:In Xcode 7.1, select your C or Objective C source code file in the file inspector; then, in Xcode's Product menu, select Perform Action > Assemble yourSourceFile.mYou may have to play with Architectures in the selected Target's Build settings to select the 32 or 64 bit ISA you want to see.Also, with Xcode 7.x installed, from the OSX Terminal command-line, you could try:xcrun -sdk macosx swiftc -emit-assembly yourSourceFile.swiftorclang -S yourSourceFile.c
Oct ’15