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

iOS定制改动navigation的backbutton

时间:2017-06-08 15:54:20      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:animate   button   ase   代码   pad   init   文字   target   targe   

iOS开发中。navigation的返回button是英文“back”。想改动成中文“返回”或者自己定义的文字。这么简单的事情却折腾了小半个小时。原来是被leftBarButtonItem和rightBarButtonItem的设置方法给迷惑了。
我们设置leftBarButtonItem和rightBarButtonItem的时候都是在当前页面。而backBarButtonItem却是在父页面;所以须要在调用

 [self.navigationControllerpushViewController:photoController animated:YES];

之前运行;代码例如以下:

  self.navigationItem.backBarButtonItem=[[UIBarButtonItemallocinitWithTitle:@”返回style:UIBarButtonItemStyleBorderedtarget:nilaction:nil];

    [self.navigationControllerpushViewController:photoController animated:YES];

赶快试试吧!

iOS定制改动navigation的backbutton

标签:animate   button   ase   代码   pad   init   文字   target   targe   

原文地址:http://www.cnblogs.com/claireyuancy/p/6963180.html

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