Reputation: 271614
I perform a custom segue:
performSegueWithIdentifier(CONSTANTS.SegueListMessagesToMessages, sender:view)
Great, it pops up.
However, the child view doesn't have a back button on the navigation controller bar.
I guess I could add a bar button item...but I can't find the Chevron that Apple uses for "Back" in the symbols. Why can't the back button be there automatically?
Upvotes: 2
Views: 2539
Reputation: 136
Embed the mother controller in the navigation controller then create your segue link. [Navigation Controller] <-(relationship segue)-> [Root View Controller] -(show segue)-> [Child View Controller]
Upvotes: 2