SNR
SNR

Reputation: 1249

When is UIApplicationMain() called?

When is the function UIApplicationMain() called? And where it is defined?

Upvotes: 1

Views: 831

Answers (1)

BoltClock
BoltClock

Reputation: 723688

It's typically called in main.m, within the main() function:

int retVal = UIApplicationMain(argc, argv, nil, nil);

It's defined here.

Example:

enter image description here

Upvotes: 1

Related Questions