Please tell the difference between presentViewController and UiNavigationController? Could I use presentViewController instead of
presentViewController
UiNavigationController
A UINavigationController is a subclass of UIViewController that manages a stack of view controllers and adds a back button etc.
UINavigationController
UIViewController
presentViewController is a method of the UIViewController class you use to present a modal view controller.