码迷,mamicode.com
首页 > 其他好文 > 详细

navigationController 的返回按钮自定义

时间:2017-01-06 10:25:48      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:bar   control   自定义   bsp   set   item   cond   anim   sel   

 

1: navigationController 的返回按钮自定义

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

navigationController 的返回按钮自定义

标签:bar   control   自定义   bsp   set   item   cond   anim   sel   

原文地址:http://www.cnblogs.com/code-Officer/p/6255034.html

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