Greetings Programs!
I've got everything in IB and I'm doing a manual segue and the navigation bar is missing from the destination view controller. I have found a number of solutions online but none of them are working for me.
My storyboard has a Navigation Controller -> Categories VC -> Topics VC -> Posts VC
The navigation bar shows up in the Categories VC but not the other two.
self.tableViewModel.cellActions.didSelect = { (cell, indexPath) in self.performSegueWithIdentifier("posts", sender: cell) } override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject!) { if segue.identifier == "posts" { let postsViewController = segue.destinationViewController as PostsViewController if sender.isKindOfClass(SCCustomCell) && sender != nil { let cell = sender as SCCustomCell postsViewController.topic = cell.boundObject } } }
Any help would be appreciated :-)
Wg