Pushing a view controller onto the navigation stack

suggest change
//Swift
let fooViewController = UIViewController()
navigationController?.pushViewController(fooViewController, animated: true)

//Objective-C
UIViewController *fooViewController = [[UIViewController alloc] init];
[navigationController pushViewController:fooViewController animated:YES];

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents