Reputation: 1249
When is the function UIApplicationMain() called? And where it is defined?
UIApplicationMain()
Upvotes: 1
Views: 831
Reputation: 723688
It's typically called in main.m, within the main() function:
main.m
main()
int retVal = UIApplicationMain(argc, argv, nil, nil);
It's defined here.
Example: