Hey guys, this is driving me crazy! I just upgraded to XCode 4 and for some reason my app won't run in the simulator or iOS device. It was working perfectly in XCode 3, but all of a sudden now when I press run the program stops at "Attaching to...". There doesn't seem to be any other info to help with this problem either. Any ideas?
|
show 3 more comments
feedback
|
|
Fixed it!! Hopefully this helps some people avoid a very frustrating couple hours. I solved this by:
Hope this helps! | |||||||||||||||||
feedback
|
|
A tip I found at the Apple Developer Forums:
Another tip is to manually delete the Yet another tip is to navigate to the Organizer (Shift ⇧ Command ⌘ 2 in xcode 4), select Projects, select you application in the left hand side and then the Delete...-button to the right of Derived Data. And never forget the universally useful tip: restart your computer and try again. Good luck! | |||||||||
feedback
|
|
Solution provided didn't fix the problem in my case. In order to solve it (XCode 4 only), I had to go to Product -> Edit Scheme. Then select the "Run " scheme, and marked "Automatically" which wasn't enabled. Hope it helps someone.
| ||||
|
feedback
|
|
Here was our fix: In Project > Edit Schemes > Run. Change the Debugger from GDB to None (directly above the green circle in the image above). Cheers! | |||||
feedback
|
|
Restarting simulator works for me :) | ||||
|
feedback
|
|
Also: make sure that you haven't included the Info.plst file in your Building Phases -> Copy Bundle Resources. If so, remove it from that list! I small mistake which could happen, but something that messes things up quite nasty :S | ||||
|
feedback
|
|
One more possible solution: I had my Resources folder added to the project as a folder reference (the blue folder icon). That caused the trouble, after adding the folder as a group the problem went away. | ||||
|
feedback
|
|
For everyone still trying to resolve this after everything you tried from above, try starting iphone simulator, clicking iOS Simulator in menu on top, Reset Contents and Warnings. This will erase all apps from simulator, but now you can finally use simulator! | ||||
|
feedback
|
|
I really find the answer for me :) for me, project setting -> your target -> build phases -> validate setting -> perform and now the problem is gone. :) I hope someone it help | ||||
|
feedback
|
|
Like Rob said, but also check the "identifier" should read by default "com.yourcompany.YourAppName" I had changed the "yourcompany" by mistake and this caused the same issue noted above. | ||||
|
feedback
|
|
For me, none of these has worked. I realized that my project had 2 info.plist files (with two different names, like info.plist and Project-info.plist), so XCode got confused. I just removed the incorrect plist file, and it worked! | ||||
|
feedback
|
|
This also seemed to happen to me when the info.plist file was in the copy build phase. It appears that sometimes Xcode will warn you about this, and other times it won't. Very strange. But if you are experiencing this issue, make sure that info.plist is NOT in your copy build phase. | ||||
|
feedback
|
|
What worked for me is the following: In XCode:
Then clean and run. | ||||
|
feedback
|
|
This is what worked for me: In Xcode navigate to the Product menu and choose EDIT SCHEMES. In the list on the left choose Run YourAppName.app. From the Executable menu choose OTHER. Navigate and choose your .app file in your project directory. Now run and it works :) | ||||
|
feedback
|
|
I noticed it happened to me when I edited the scheme from Build Release to Build Debug. I changed back, and it worked :) | |||||
feedback
|
|
I tried everything and nothing worked. I have an old project from XCode 3. I simply renamed info.plist in the project to another name, restarted the simulator and everything is working fine since. | ||||
|
feedback
|
|
I solved this problem how: 1) iOS Simulator->Reset Contents and Settings... 2) Sure project name, scheme name and target name is identical. "AppName" and "Appname" is not true. Must be "AppName" and "AppName", or "Appname" and "Appname". 3) Restart XCode and Quit Simulator. Project name at Build Settings->Product Name. Scheme name at Product->Manage Schemes. Click on current scheme once for rename. Target name at Column of Project with Targets. Click once on current target for rename. Good luck =) | ||||
|
feedback
|
|
What worked for me:
| ||||
|
feedback
|
|
I frequently encountered this problem after renaming a project in Xcode 4. I was able to fix it by editing the Bundle Identifier in the .plist file. After I renamed the project, the Bundle Identifier would change to something like this:
changing it back to this:
will stop Xcode from hanging and allow the App to run. | ||||
|
feedback
|
|
My problem was also a folder named "resources" on the root source folder. Looks like it conflicts with some internal build naming. Renaming the folder to "res" solved the problem for me. | ||||
|
feedback
|
|
If your app still doesn't work after changing Product Name, try to change "Executable file" also. I'd solved same problem with this method. | |||||
feedback
|
|
I had the same problem. The issue was there was one more user who was logged in and had the simulator running. Think there can be only one instance of iphone simulator running on a machine even for different users. Hope this info would be useful for somebody :) | ||||
|
feedback
|
|
After all said and done. I had to stop the simulator. Then the message change to downloading Mac OS X 10.6 core library. | ||||
|
feedback
|
|
Create a new user account, switch to account, open XCode and try running the project. After trying all of the other suggestions with no success, not only was I again able to run on sim, but the original account now works. | ||||
|
feedback
|
|
I had this problem but the problem was different. Another application was trying to add a certificate to the keychain and was hanging for some reason (network?). Reproduced this several time, and only when the keychain was free did was xcode able to run the app. | ||||
|
feedback
|
|
I had the same issue. My mistake was the following line in my code:
Propably, the wrong assignment in the localnotification caused the wierd behaviour. So, it also depends on your code! Alex | ||||
|
feedback
|
|
In Xcode navigate to the Product menu and choose EDIT SCHEMES. Verify that the Launch Automatically Radio Button is selected. | ||||
|
feedback
|
|
I was trying to use the all solutions, but no one worked for me. I realised that the problem occured, when Info.plist had set any Target Membership. Try to check out all checkboxes in Target Membership (Utilities) of all files called Info.plist. | ||||
|
feedback
|
|
"attaching to ..." issue: xcode 4.1 solution: Make a new template app in xcode 4.1 and run it in the simulator. This resets the error and xcode-sim bridging correctly :) | ||||
|
feedback
|
|
My solution is correcting the nib name. (I changed my nib name before for an iPad version but then I deleted the iPad nib file). Then it works well again. | ||||
|
feedback
|
protected by Community♦ May 13 at 23:34
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.


resourcesfolder into the project. Deleting it doesn't fix it. – Kit Sunde Nov 3 '11 at 18:52