博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
navigationController 的返回按钮自定义
阅读量:6801 次
发布时间:2019-06-26

本文共 1099 字,大约阅读时间需要 3 分钟。

 

1: navigationController 的返回按钮自定义

SecondViewController *secondVC = [SecondViewController new];

    
    
    //更改UINavigationController的返回按钮
    UIBarButtonItem *backButton = [[UIBarButtonItem alloc]init];
    backButton.title = @"返回";
    [self.navigationItem setBackBarButtonItem:backButton];
    
    
    [self.navigationController pushViewController:secondVC animated:YES];

 

2,  方法1在有的navigationBar hidden 的页面不好使,但是还有一种方法如下:

- (void)viewDidLoad {    [super viewDidLoad];    // Do any additional setup after loading the view.        self.view.backgroundColor = [UIColor grayColor];    //    UIBarButtonItem * backButton = [[UIBarButtonItem alloc] init];////    backButton.image = [UIImage imageNamed:@"nav_back_n"];//    backButton.title = @"hh";//    [self.navigationItem setBackBarButtonItem:backButton];    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"nav_back_n"] style:UIBarButtonItemStylePlain target:self action:@selector(backAction)];}- (void) backAction{    [self.navigationController popViewControllerAnimated:YES];}

 

转载于:https://www.cnblogs.com/code-Officer/p/6255034.html

你可能感兴趣的文章
Oracle 11g新特性之--Server Result Cache
查看>>
Oracle中的ORA-01548: active rollback segment '_SYSSMU1$' found
查看>>
AngularJs $anchorScroll、$controller、$document
查看>>
Microsoft资源
查看>>
WordPress 永久链接或固定链接设置技巧
查看>>
数据结构之线性表
查看>>
在PPT中插入FLASH遇到的系列问题
查看>>
XSS研究4-来自外部的XSS攻击的防范
查看>>
Spring知识点总结-1
查看>>
微软私有云分享(R2)21 BMC提升B格
查看>>
MDSF:如何使用GMF来做TOGAF建模工具
查看>>
Spring Security简介
查看>>
打造一流的研发中心
查看>>
MCollective架构篇3-Puppet插件的部署及测试
查看>>
配置GNS使用CRT连接
查看>>
Java:集合类性能分析
查看>>
cms无法登陆
查看>>
JavaScript中事件处理
查看>>
VSTO 向office文档中插入内容
查看>>
【百度地图API】关于如何进行城市切换的三种方式
查看>>