hello, i can't fix this error displayed in the return line
"(lldb)"
int main(int argc, char *argv[]) {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([PoutremultivueAppDelegate class]));
}
hello, i can't fix this error displayed in the return line
"(lldb)"
int main(int argc, char *argv[]) {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([PoutremultivueAppDelegate class]));
}
It’s very likely that your app has crashed someone in a system framework and Xcode’s debugger is taking you to the nearest stack frame for which you have source code. In the Debug navigator you should look at the backtrace of the crashed thread to see if it contains any hints as to what’s gone wrong. The symbol names in the frameworks without source code might contain useful hints.
If you can’t work things out from there then run the app outside of Xcode and trigger the crash. This should generate a crash report, which you can post here. Technote 2151 Understanding and Analyzing iOS Application Crash Reports has more info on crash reports.
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware
let myEmail = "eskimo" + "1" + "@apple.com"