iOS 导航栏自定义view

 self.automaticallyAdjustsScrollViewInsets = YES;
    YHEatTitleView *titleView = [YHEatTitleView createCustomNav:^(UIButton *sender) {
        [self.navigationController popViewControllerAnimated:YES];
    }];
    [titleView.navTitle setText:@"结账"];
    self.navigationItem.titleView = titleView;

猜你喜欢

转载自blog.csdn.net/weixin_34061555/article/details/87271970