Any one knows the launch sequence of a swift app?. As i can see there is no main
function in a swift application. Then who is responsible for doing this
// Entry point of a normal iOS app
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
Your application object and AppDelegate is getting created here. But for swift app i was wondering who is creating these.
If any one knows, share your thoughts.