I’m toying with iPhone app development. Often times I would run into runtime error and I would have no idea where the error occurs (e.g. the exact line). In console app with GCC I could at least compile with the -g flag. dump a core file and read that core file in to get to the last line that got into trouble. But how would I do that in Xcode? Build and Debug doesn’t seem to have the debugging symbol loaded.
I’m toying with iPhone app development. Often times I would run into runtime error
Share
Take a look at this link and see if it helps you.
http://developer.apple.com/iphone/library/documentation/DeveloperTools/Conceptual/XcodeDebugging/010-Debugging_Essentials/debugging_essentials.html
Cheers,
Kevin