@property(nonatomic,retain) UIBarButtonItem *backBarButtonItem; // Bar button item to use for the back button in the child navigation item. 通过更改自己的backBarButtonItem属性,可以更改后退到自己的back按钮的文字,请注意从A推入B,更改的是A view 的属性,不是B view 的! UIBarButtonItem的创建不需要指定其他函数…
先来看一下 UIBarItem 的 title 的描述 The title displayed on the item. You should set this property before adding the item to a bar. The default value is nil. 它的默认值为nil,你应该在把 item 添加到 bar 上前设置好它. 我们都知道,当我们 push 一个 viewController 后,返回 item 上的 title 正是上一个 viewCo…