Guest User

Untitled

a guest
Jun 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // When the view appears, update the title and table contents.
  2. - (void)viewWillAppear:(BOOL)animated {
  3. self.title = @"Info";
  4. self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Orange" style:UIBarButtonItemStylePlain target:self action:@selector(back:)];
  5.  
  6. }
  7. - (void) back: (id) sender {
  8. [[self navigationController] popToRootViewControllerAnimated:TRUE];
  9. }
Add Comment
Please, Sign In to add comment