Skip to content

Instantly share code, notes, and snippets.

@yeradis
Last active June 8, 2016 08:48
Show Gist options
  • Save yeradis/0c508a130b916f891dae3c6198d5632b to your computer and use it in GitHub Desktop.
Save yeradis/0c508a130b916f891dae3c6198d5632b to your computer and use it in GitHub Desktop.
int main(int argc, char * argv[])
{
@autoreleasepool {
Class appDelegateClass = NSClassFromString(@"QNTestingAppDelegate");
if (!appDelegateClass)
appDelegateClass = [QNAppDelegate class];
return UIApplicationMain(argc, argv, nil, NSStringFromClass(appDelegateClass));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment