您的位置:首页 > 其它

改变导航栏上面系统自己带的返回按钮及颜色

2015-12-23 15:53 411 查看
A视图进入B视图,如下,self指的A,bView指的B。

[self.navigationController pushViewController:self.bView animated:YES];
一开始想当然的,在B视图的viewDidLoad里直接使用:

self.navigationItem.backBarButtonItem.title=@"back";

来更改后退按钮标题,结果后退后,发现A视图的导航栏标题也变成“back”了。

于是网上搜了一下,别人推荐在B视图的viewDidLoad/viewWillAppear里使用:

UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithTitle:@"back" style:UIBarButtonItemStyleBordered target:nil action:nil];[self.navigationItem setBackBarButtonItem:backItem];[backItem release];
我试了,发现无效。无奈之下,只好研读UINavigationController Class Reference去,在“Updating the Navigation Bar”小节,有这么一段话:The bar button item on the left side of the navigation bar allows for navigation back to the previous view controller on the navigation stack. The navigation controller updates the left side of the navigation bar as follows:If the new top-level view controller has a custom left bar button item, that item is displayed. To specify a custom left bar button item, set the leftBarButtonItem property of the view controller’s navigation item.
If the top-level view controller does not have a custom left bar button item, but the navigation item of the previous view controller has a valid item in its backBarButtonItem property, the navigation bar displays that item.
If a custom bar button item is not specified by either of the view controllers, a default back button is used and its title is set to the value of the title property of the previous view controller—that is, the view controller one level down on the stack. (If there is only one view controller on the navigation stack, no back button is displayed.)
我大致解释一下,使用pushViewController切换到下一个视图时,navigation controller按照以下3条顺序更改导航栏的左侧按钮。1、如果B视图有一个自定义的左侧按钮(leftBarButtonItem),则会显示这个自定义按钮;2、如果B没有自定义按钮,但是A视图的backBarButtonItem属性有自定义项,则显示这个自定义项;3、如果前2条都没有,则默认显示一个后退按钮,后退按钮的标题是A视图的标题。按照这个解释,我把UIBarButtonItem *backItem……这段代码放在A视图的pushViewController语句之前。OK问题解决了,B视图的后退按钮的标题变成back了。

UIBarButtonItem*backItem=[[UIBarButtonItemalloc]
initWithTitle:@"back"
style:UIBarButtonItemStyleBordered
target:nil
action:nil];

[self.navigationItem
setBackBarButtonItem:backItem];

[self.navigationController
pushViewController:self.bView
animated:YES];

上面是其他人的博客留下来参考,但是接下来有一个问题遇到了也很棘手 ,因为需求仅仅想把系统的文字改变只留下一个返回标示符号 ,用到上面的方法很麻烦,每次push都需要,我找到了一个不太常用的方法

self.navigationController.navigationBar.barTintColor= [UIColor
orangeColor];

[self.navigationController.navigationBar
setTitleTextAttributes:@{NSFontAttributeName:[UIFont
systemFontOfSize:16],

NSForegroundColorAttributeName:[UIColor
whiteColor]}];

[self.navigationController.navigationBar
setTintColor:[UIColor
whiteColor]];

//去掉返回按钮的文字

[[UIBarButtonItem
appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60)
forBarMetrics:UIBarMetricsDefault];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: