I am using URL Schemes to be able to open my app using a url. It is working fine when the receiver app is running.
The problem however, is if the app is closed. If I type in the url into Safari for example, the app launches and immediately crashes and I'm given:
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
Thread 1: Program received signal: "SIGKILL"
I have put an NSLog in didFinishLaunchingWithOptions but it looks like that never gets fired, neither does handleOpenURL.
Why does it do this?