Create a custom left back button on UINavigationBar WITH the standard arrow on the left

后端 未结 6 1592
情书的邮戳
情书的邮戳 2021-02-05 03:27

When I create a custom back button, I use the following code:

    UIBarButtonItem *leftButton = [[UIBarButtonItem alloc]initWithTitle:@\"Yeah\" style:UIBarButton         


        
相关标签:
6条回答
  • 2021-02-05 03:59

    I use code like:

    UIBarButtonItem *leftBar = [[UIBarButtonItem alloc] init];
    leftBar.title = @"Back";//Details
    self.navigationController.navigationBar.topItem.backBarButtonItem = leftBar;
    
    0 讨论(0)
  • 2021-02-05 04:06

    The easiest thing to do would be to set the title, in the parent controller (i.e. the one you want to nav back to). If you don't want this to be the same as the actual title displayed in that VC's view, you can change the title in viewWillDisappear to what you want on the next VC's back button, and then change it back to what you want in the parent in viewWillAppear.

    If you are using storyboards, you can also set the back title directly in IB.

    Finally, in order to create a custom back button, you can do something like:

    self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"Details" style:UIBarButtonItemStyleBordered target:nil action:nil];
    

    ...just be sure to do this in the presenting (or parent) view controller, not the view controller being loaded (the presented controller).

    0 讨论(0)
  • 2021-02-05 04:09

    well you need to go with a background image and with title and

    // Creates a back button instead of default behaviour (displaying title of previous screen)
    UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"back_arrow.png"]
                                                                   style:UIBarButtonItemStyleBordered
                                                                  target:self
                                                                  action:@selector(backAction)];
    
    tipsDetailViewController.navigationItem.leftBarButtonItem = backButton;
    [backButton release];
    
    0 讨论(0)
  • 2021-02-05 04:12

    Finally, here's the snippet I use to define the back button's title with the standard left arrow in the current view, not in the parent view :

    - (void)viewDidLoad {
        [super viewDidLoad];
    
        [self setTitle:@"Current View"];
    
        // Get the previous view controller
        UIViewController *previousVC = [self.navigationController.viewControllers objectAtIndex:self.navigationController.viewControllers.count - 2];
    
        // Create a UIBarButtonItem
        UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"FooBar" style:UIBarButtonItemStyleBordered target:self action:@selector(yourSelector)];
    
        // Associate the barButtonItem to the previous view
        [previousVC.navigationItem setBackBarButtonItem:barButtonItem];
    }
    

    Here's the result :

    enter image description here

    Note : However, since it's not possible to add an action on a backBarButtonItem, you can refer to this great post if you want it to.

    Updated for Swift

    // Prev - no chevron...
    //navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Back !", style: .plain, target: self, action: #selector(backPressed))
    
    // adds the chevron
    let vc = navigationController?.viewControllers.first
    let button = UIBarButtonItem(title: "Go Back", style: .plain, target: self, action: #selector(backPressed))
    vc?.navigationItem.backBarButtonItem = button
    
    0 讨论(0)
  • 2021-02-05 04:15
    UIButton * backButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [backButton addTarget:self action:@selector(popViewController) forControlEvents:UIControlEventTouchUpInside];
    [backButton setFrame:FRAME_DEFINE
    [backButton setContentHorizontalAlignment:UIControlContentHorizontalAlignmentLeft];
    [backButton setExclusiveTouch:YES];
    [backButton setImage:[UIImage imageNamed:BACK_BUTTON_DEFAULT_ICON] forState:UIControlStateNormal];
    [backButton setTitle:@"BACK" forState:UIControlStateNormal];
    [backButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    UIBarButtonItem *backMenuBarButton = [[UIBarButtonItem alloc] initWithCustomView:backButton];
    self.navigationItem.leftBarButtonItem = backMenuBarButton;
    
    0 讨论(0)
  • 2021-02-05 04:22

    For Swift, using Erzekiel's answer as the basis for this, you can simplify it to -

    extension UIViewController {
    
        func setBackButtonTitle(to title: String) {
            let barButtonItem = UIBarButtonItem(title: title, style: .plain, target: self, action: nil)
            self.navigationItem.backBarButtonItem = barButtonItem
        }
    }
    

    This should be called from the parent viewController, eg in viewWillDisappear -

    override func viewWillDisappear(_ animated: Bool) {
        super.viewWillDisappear(animated)
        self.setBackButtonTitle(to: "Back"))
    }
    
    0 讨论(0)
提交回复
热议问题