iOS 11导航控制器隐藏返回按钮文字,箭头下移
项目中要求导航栏的返回按钮只保留那个箭头,去掉后边的文字(uinavigationcontroller 返回按钮 标题)
iOS11之前
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -56) forBarMetrics:UIBarMetricsDefault];
iOS11之后
在iOS11上,出现 图片显示异常(UINavigationBar上backIndicatorImage下移),导致之前的方式不可用.
[[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColorclearColor]} forState:UIControlStateNormal];//将title 文字的颜色改为透明
有一个不好的地方是,如果你导航条有背景颜色时,点击返回会可以看到的。
网友评论
···
[[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColorclear Color]} forState:UIControlStateNormal];
···
这样搞,左侧的按钮的文字是没了,但是如果右侧有按钮,字也没了
[UINavigationBar appearance].tintColor = [UIColor blackColor];
[UIBarButtonItem appearance].tintColor = [UIColor blackColor];