I had develop an iPad app. When i close the app by clicked the minus button on multitasking bar, i run the app again and iPad was crash and fully black screen.
After i connect with Xcode and found the error message is "SIGKILL" in main.m
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil); << Thread 1:Program received signal: "SIGKILL".
[pool release];
return retVal;
}
is there any solution for this error?