Interface Builder Navigation Bar Setting The “Simulated Metrics” don’t actually alter the status bar, navigation bar etc, it just simulates the size and colour of them for you so that you can layout your views without having to shift everything down. Adding Navigation Bar Based View Controller In AppDelegate_iPhone.h @interface AppDelegate_iPhone : AppDelegate_Shared { UINavigationController […]
Category: Navigation Bar
Navigation Bar Buttons
Changing The Back Button To Say Something Other Than The Previous Views Title You can’t change the button text in the new view, you need to do it before the view is shown by simply changing the previous views title before triggering the new view: [self.navigationItem setTitle:@”Back”]; [self.navigationController pushViewController:Viewer animated:YES]; Adding An Info Button That […]