码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 页面跳转后更改左边导航栏的文字还有箭头颜色

时间:2015-04-08 16:33:36      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:ios   ios开发   导航   uibutton   




 LoginViewController *loginViewController  =[[ LoginViewController alloc] init];
                UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:loginViewController];
                

                UIButton *leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];

                leftBtn.frame = CGRectMake(0, 0, 70, 37);
                leftBtn.titleLabel.font=[UIFont systemFontOfSize:25.0];
                [leftBtn setTitle:@"取消" forState:UIControlStateNormal];
                [leftBtn addTarget:self action:@selector(dismissController) forControlEvents:UIControlEventTouchUpInside];
                
                loginViewController.navigationItem.leftBarButtonItem =[[UIBarButtonItem alloc] initWithCustomView:leftBtn];
                [self.navigationController presentViewController:nav animated:YES completion:nil];


更改箭头颜色:
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];


iOS 页面跳转后更改左边导航栏的文字还有箭头颜色

标签:ios   ios开发   导航   uibutton   

原文地址:http://blog.csdn.net/yangchen9931/article/details/44941243

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!