Whenever I click a certain button, the app always dies and I'm sent to:
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
THIS LINE ==> int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
For those who are familiar, you know that I didn't write this code. I don't know how to find out where my error is!
Also, the output shows this:
2011-10-27 21:03:17.690 My Program[55441:207] Unbalanced calls to begin/end appearance transitions for <UITabBarController: 0x68181f0>.
(lldb)
I don't know where to look short of commenting out code line by line until I find the issue. Any suggestions?