I\'m almost finished with a project and am working out the last few UI kinks. My app uses a tab bar to navigate and for aesthetic purposes I want the app to open on the last
Just set the selectedIndex of the tabBarController. Something along these lines.
var freshLaunch = true override func viewWillAppear(animated: Bool) { if freshLaunch == true { freshLaunch = false self.tabBarController.selectedIndex = 4 // 5th tab } }