I am trying to add a refresh button to the top bar of a navigation controller with no success. Here is the header: @interface PropertyViewController : UINavigationController { }...
I have a navigation based application and I want to change the animation of the push and pop animations. How would I do that? Edit 2018 There have been...
I need to execute an action (emptying an array), when the back button of a UINavigationController is pressed, while the button still causes the previous ViewController on the stack...
How can I hide a navigation bar from first ViewController or a particular ViewController in swift? I used the following code in viewDidLoad(): override func viewDidLoad() { super.viewDidLoad() self.navigationController?.isNavigationBarHidden...
I added a navigation control to switch between views in my app. But some of the views shouldn’t have ‘Back’ (the previous title) button. Any ideas about how to...
In iOS 7 Apple added a new default navigation behavior. You can swipe from the left edge of the screen to go back on the navigation stack. But in...
I have the code below that hides and shows the navigational bar. It is hidden when the first view loads and then hidden when the “children” get called. Trouble...