Reputation: 6147
I have an Xcode project that has an other project as a dependent project. My main Xcode project links agains a framework in that dependent project.
Now I want to track down something in my framework. How can I set break points in that dependent project so that when I'm starting my main Xcode project they stop in the dependent project? Sometimes, I'm able to get into a some parts of the framework with just stepping in but the breakpoints in the dependent project aren't working.
Any suggestions how I can make these breakpoints in a dependent Xcode project work?
Upvotes: 0
Views: 539
Reputation: 22717
Xcode 3.2.2 has a known bug with debugging frameworks. Fall back to 3.2.1 until a newer version is released.
Upvotes: 1