We know iOS life-Cycle as below Graph with Objective-C:
e.g. where is main() in Swift project , or where is AppDelegate.swift's functions?
We know iOS life-Cycle as below Graph with Objective-C:
e.g. where is main() in Swift project , or where is AppDelegate.swift's functions?
It's the same because it's not a language depending life-cycle. It's an Application life-cycle.
You could change the language, but the way application works still be the same. If there were any differences, you won't be able to use swift/objc in the same project.
All calls are still there, but they change the way they look (but not named) a bit because of swift syntax. You could look them up here: Looking to understand the iOS UIViewController lifecycle