博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于导航视图无法隐藏的问题:self.navigationItem.rightBarButtonItem.customView.hidden = YES;无效...
阅读量:6325 次
发布时间:2019-06-22

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

  hot3.png

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(doAdd)];self.navigationItem.rightBarButtonItem.customView.hidden = YES;

这样写讲道理 ,是不会出现右视图的,。。。。但是 。。。实际运行发现,会议就存在,,,

解决办法:自定义导航。。。

- (UINavigationItem *)rightNavButton {    if (!navItem) {        navItem = [[UINavigationItem alloc] init];    }    return navItem;}self.navItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(doAdd)];self.navItem.rightBarButtonItem.customView.hidden = YES;

这样就不显示了。。。

很迷。。。

 

转载于:https://my.oschina.net/rainwz/blog/1631736

你可能感兴趣的文章
OrgChart 组织架构与PHP结合使用
查看>>
db2常见问题说明
查看>>
centos 6.4 samba的配置
查看>>
gcc -D:gcc的预定义功能
查看>>
haproxy配置增删改查
查看>>
我的友情链接
查看>>
sqlserver 取取月初月末和月份间隔
查看>>
git保存帐号密码
查看>>
Linux 基础名词
查看>>
分析对手的网站,优化自己的网站。
查看>>
我的友情链接
查看>>
HDU-1166敌兵布阵
查看>>
LINUX REDHAT第一单元练习题
查看>>
shell实现多级菜单脚本编写
查看>>
Lua1.1 虚拟机指令分析
查看>>
R语言编程艺术(4)R对数据、文件、字符串以及图形的处理
查看>>
shell之RDS备份+判断是否传输完成
查看>>
Shell获取当前主机ip地址
查看>>
init : Failed to spawn readahead-collector main process :unable to execute ...
查看>>
Saltstack安装 (CentOS7.x)
查看>>