Last active
June 8, 2016 08:48
-
-
Save yeradis/0c508a130b916f891dae3c6198d5632b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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