Have any Question?

You can ask below or enter what you are looking for!

Tag: UIViewController

UIViewController lifecycle explained

UIViewController Lifecycle In this tutorial we will explain the lifecycle of UIViewController in iOS, these methods will run in the following order: 1- init?(coder aDecoder: NSCoder) If you are using storyboards this is where the controller is initialized, it is called one time only during the view controller lifetime. 2- loadView() . . . Read more