My breakpoints are not working in XCode4. To fix this in XCode3 I turned off the "Load symbols lazily" option, I can't find a similar option in XCode4...
相关问题
- Apple PrefPane example fails to build with clang e
- XCode 4.2 clang seg fault
- How do I change the compiler in Xcode
- How do I add OpenGL Mathematics (GLM) to Xcode 4?
- How do you link a C++ static library to a C progra
相关文章
- Generate code for core data attributes in xcode 4
- UITableViewController Background Image
- Can't Rename Files In Xcode 4 Anymore?
- How do I navigate through a method call hierarchy
- can't find info.plist in xcode 4
- What should I do about xcuserdata directories with
- reloadData in MasterView from DetailView
- How to debug “Xcode CodeSign error: The entitlemen
There is no Load Symbols Lazily option in Xcode 4.
The Breakpoints button in the project window toolbar toggles running/debugging your program. Xcode initially sets the button for running, which disables your breakpoints. For your breakpoints to be enabled, the Breakpoints button should look like the following:
In earlier Xcode version find Xcode -> Preferences -> Debugging tab. Uncheck Load symbols lazily if checked. It seems to be dropped from Xcode 4. Have a look at this post click here
This worked for me.