xcode4.6
Xcode 4.6.2 app crashes on every second run
ok, I found a solution. Please open the menu Product -> Scheme -> Edit Scheme, select Run YouAppName.app on the left, tab Info. Then choose GDB instead of LLDB in debugger field. UPD: In new Xcode 4.6.3 this bug has been fixed. So just update your Xcode.
changing the project and target name in XCode
You can change the project name by clicking on the project name at the top of the left sidebar and then entering a new name under the Identity on the right sidebar and finally pressing Return.
“po” command in Xcode 4.6 is very slow the first time
Upgrading to 4.6.2 fixed this problem for me in Xcode
iOS 6.1 and Xcode 4.6, enumaration warning UIViewAnimationCurveEaseOut
You’re using the wrong option value. Try UIViewAnimationOptionCurveEaseOut.
Modal segue, navigation bar disappears
Just add another Navigation Controller to your modal view controller. Follow the steps Select the Modal View Controller Go to Editor menu Select Embed In Select Navigation Controller Run the application. Now it should work perfectly. Hope this solves your problem.
How do I create a new C++ project in Xcode?
I’ll explain how to make C++ or C project in the new XCode 4 or later. (This does work in XCode 6.2)
Xcode version 4.6.2 (4H1003) compiler error
Do a Clean of the project; hold Option so that you are cleaning out the whole build folder and intermediates. You might have to quit Xcode and throw away the whole contents of the DerivedData folder by hand in the Finder, as I describe here: How to Empty Caches and Clean All Targets Xcode 4
Could not insert new outlet connection [duplicate]
I got the same problem as you today… I think this is a bug of Xcode, below is the way to fix the issue: Close the project you are working on with. Delete your project’s【DerivedData】folder. (This folder may inside your project’s folder, or inside ~/Library/Developer/Xcode/DerivedData/(your project)/ ) or somewhere else that was setup by you. … Read more