When pushing a new view controller, the "back" button uses the title of the previous view. Is there a way to make it so that it is UIBarButtonSystemItemBookmarks instead?
I've tried the following but it doesn't work.
Code:
UIBarButtonSystemItem btnItem = UIBarButtonSystemItemBookmarks;
UIBarButtonItem *btnSearch = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:btnItem target:self action:self.navigationItem.leftBarButtonItem.action];
self.navigationItem.leftBarButtonItem = btnSearch;