Search results for

“Xcode”

93,786 results found

Post

Replies

Boosts

Views

Activity

Xcode 12 Beta Not compiling some code
Hey Everyone, After loading my SwiftUI based app into the new version of Xcode, I was expecting normal code errors, but given the backwards compatibility of new SwiftUI syntax, I didn't get any of those. Instead, I have gotten multiple The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions I've never used an Xcode beta for larger apps before, so is this a common occurrence or something I should submit a bug report for? The code compiles fine on Xcode 11.x and there is seemingly no actual problems with the code.
1
0
460
Jun ’20
Issue with Xcode
Hi! I just started to learn to develop iOS apps in visual studio and Xcode. After making a simple app, I tested it in VS, and it successfully emulated an iPhone with my app, but when I tried doing the same in Xcode, I couldn't do it, neither virtually, nor with my own iPhone. After this, I tried to run a blank app in VS and Xcode too, and the same thing happened. The first error is: Multiple commands produce '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/DerivedData/myApp/Build/Products/Debug-iphonesimulator/myApp.app/Info.plist': 1) Target 'myApp' (project 'myApp') has copy command from '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/Info.plist' to '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/DerivedData/myApp/Build/Products/Debug-iphonesimulator/myApp.app/Info.plist' 2) Target 'myApp' (project 'myApp') has process command with output '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/DerivedData/myApp/Build/Products/Debug-iphonesimu
5
0
1.8k
May ’21
Reply to In-House app after update to iOS15: App need to be updated
That's apparently a frequent problem. Someone seems to have found a solution here, at the end of this post: https://developer.apple.com/forums/thread/682067 found the same issue with multiple enterprise apps once the devices were upgraded to iOS 15, specifically those apps built with manual signing in XCode. This was resolved with the following different approaches. Solution 1 : We got rid of this by simply auto signing in XCode. Solution 2 : By using the latest code signature format. Step 1 : Add the flag --generate-entitlement-der under the Build Settings >> Other Code Sign Flags in XCode Step 2 : if applicable : % codesign -s Your Codesign Identity -f --preserve-metadata /path/to/YOURAPP.app , follow steps from h ttps://developer.apple.com/documentation/xcode/using-the-latest-code-signature-format Step 3 : Copy YOUR_APPLICATION.app into a different directory : XCode>Windows>Organizer>Right Click your project and show it
Oct ’21
Downloading Xcode
Hi, I am new to Apple Developer and Xcode.I am having trouble with downloading Xcode on my Macbook's app store, it says this message: 'There is not enough disk space available to install the product.'. I've had a look online and in this forum and it seems lots of other people have had this issue too. I wanted to ask if it's okay to download Xcode from the downloads section in the Apple Developer website. I downloaded Xcode 11.4.1 rather than the 11.5.1 Beta. Is it a good idea to download it from this website? Will it work the same way? Also, when a new version gets released, will I have to download the new version from scratch or will it update automatically? Thanks very much if anyone reads this. 🙂
3
0
528
May ’20
Xcode storyboard code
When using storyboard UI interface, there is also a stroyboard xib file. What is this? And what is the differnece from this and the old Xcode file called MasterViewController.m & .h?I am viewing a representation on xcode but we're not using the same version... Xcode 6 vs Xcode 8MacMage
2
0
537
Sep ’17
Xcode being very buggy
I am trying to make an iOS app in Xcode, when I first started everything was going fine... but about a day into coding, I face an issue where all my view controllers go black... when I build the app and run it on my phone it works, just not in Xcode... because of this I can't really do anything... I am also getting this errorand when I click onit gives me the following filessystem.logLog.txtCoreSimulatorLogs/Simulator.logCoreSimulatorLogs/CoreSimulator.log
3
0
1.1k
Apr ’19
Xcode 26.1 freezes
When I try to build my project with Xcode 26.1 beta (17B5025f) it freezes a lot. The steps are as follows: Open my project with the aforementioned Xcode Start a build of one of my schemes Open a browser or any other app above the Xcode window Try to present the Xcode window on the foreground Result: Xcode freezes I cleared the Derived Data and it still happens
0
0
171
Sep ’25
Xcode 12 Beta Not compiling some code
Hey Everyone, After loading my SwiftUI based app into the new version of Xcode, I was expecting normal code errors, but given the backwards compatibility of new SwiftUI syntax, I didn't get any of those. Instead, I have gotten multiple The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions I've never used an Xcode beta for larger apps before, so is this a common occurrence or something I should submit a bug report for? The code compiles fine on Xcode 11.x and there is seemingly no actual problems with the code.
Replies
1
Boosts
0
Views
460
Activity
Jun ’20
Xcode questions.
Why can not a new project be created by right clicking xcode in the Dock?
Replies
1
Boosts
0
Views
484
Activity
Nov ’17
download xcode
XCode 9.2 is shown in the MAS, but it doesn't download!Why? What to do? Just wait?
Replies
3
Boosts
0
Views
530
Activity
Jan ’18
xcode download
I can not find Xcode for os x 10.10, any advice please
Replies
1
Boosts
0
Views
465
Activity
Sep ’17
Issue with Xcode
Hi! I just started to learn to develop iOS apps in visual studio and Xcode. After making a simple app, I tested it in VS, and it successfully emulated an iPhone with my app, but when I tried doing the same in Xcode, I couldn't do it, neither virtually, nor with my own iPhone. After this, I tried to run a blank app in VS and Xcode too, and the same thing happened. The first error is: Multiple commands produce '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/DerivedData/myApp/Build/Products/Debug-iphonesimulator/myApp.app/Info.plist': 1) Target 'myApp' (project 'myApp') has copy command from '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/Info.plist' to '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/DerivedData/myApp/Build/Products/Debug-iphonesimulator/myApp.app/Info.plist' 2) Target 'myApp' (project 'myApp') has process command with output '/Users/ottodarvas/Code/VS/myApp/myApp/obj/Xcode/2/DerivedData/myApp/Build/Products/Debug-iphonesimu
Replies
5
Boosts
0
Views
1.8k
Activity
May ’21
Reply to In-House app after update to iOS15: App need to be updated
That's apparently a frequent problem. Someone seems to have found a solution here, at the end of this post: https://developer.apple.com/forums/thread/682067 found the same issue with multiple enterprise apps once the devices were upgraded to iOS 15, specifically those apps built with manual signing in XCode. This was resolved with the following different approaches. Solution 1 : We got rid of this by simply auto signing in XCode. Solution 2 : By using the latest code signature format. Step 1 : Add the flag --generate-entitlement-der under the Build Settings >> Other Code Sign Flags in XCode Step 2 : if applicable : % codesign -s Your Codesign Identity -f --preserve-metadata /path/to/YOURAPP.app , follow steps from h ttps://developer.apple.com/documentation/xcode/using-the-latest-code-signature-format Step 3 : Copy YOUR_APPLICATION.app into a different directory : XCode>Windows>Organizer>Right Click your project and show it
Replies
Boosts
Views
Activity
Oct ’21
Downloading Xcode
Hi, I am new to Apple Developer and Xcode.I am having trouble with downloading Xcode on my Macbook's app store, it says this message: 'There is not enough disk space available to install the product.'. I've had a look online and in this forum and it seems lots of other people have had this issue too. I wanted to ask if it's okay to download Xcode from the downloads section in the Apple Developer website. I downloaded Xcode 11.4.1 rather than the 11.5.1 Beta. Is it a good idea to download it from this website? Will it work the same way? Also, when a new version gets released, will I have to download the new version from scratch or will it update automatically? Thanks very much if anyone reads this. 🙂
Replies
3
Boosts
0
Views
528
Activity
May ’20
Xcode storyboard code
When using storyboard UI interface, there is also a stroyboard xib file. What is this? And what is the differnece from this and the old Xcode file called MasterViewController.m & .h?I am viewing a representation on xcode but we're not using the same version... Xcode 6 vs Xcode 8MacMage
Replies
2
Boosts
0
Views
537
Activity
Sep ’17
Xcode being very buggy
I am trying to make an iOS app in Xcode, when I first started everything was going fine... but about a day into coding, I face an issue where all my view controllers go black... when I build the app and run it on my phone it works, just not in Xcode... because of this I can't really do anything... I am also getting this errorand when I click onit gives me the following filessystem.logLog.txtCoreSimulatorLogs/Simulator.logCoreSimulatorLogs/CoreSimulator.log
Replies
3
Boosts
0
Views
1.1k
Activity
Apr ’19
xcode for 10.11.6?
can't afford a new Mac right now; where can I get xcode for 10.11.6 OS?
Replies
3
Boosts
0
Views
5.6k
Activity
Aug ’17
Xcode 26.1 freezes
When I try to build my project with Xcode 26.1 beta (17B5025f) it freezes a lot. The steps are as follows: Open my project with the aforementioned Xcode Start a build of one of my schemes Open a browser or any other app above the Xcode window Try to present the Xcode window on the foreground Result: Xcode freezes I cleared the Derived Data and it still happens
Replies
0
Boosts
0
Views
171
Activity
Sep ’25
When will Xcode 8.3.2 be available?
When will Xcode 8.3.2 be available?Xcode 8.3.1 and Xcode 8.3 both continuous lock/spinning wheel of death.5 seconds type 5 seconds frozen5 seconds type 5 seconds frozenCurrently using downgraded version (Xcode 8.2.1)
Replies
2
Boosts
0
Views
1.6k
Activity
Apr ’17
makefile and XCode
Hello, Is there an easy way to compile a project defined by a makefile.txt with XCode? Thanks !
Replies
1
Boosts
0
Views
4.5k
Activity
Aug ’20
Xcode on 10.11.6
Is it possible to download a compatible version of Xcode on a mac running this version OS?
Replies
7
Boosts
0
Views
30k
Activity
Apr ’17
Xcode Playground
Hello everyone, Is there a way to set the minimum deployment target in Xcode Playground?
Replies
2
Boosts
0
Views
1.7k
Activity
Jan ’24