Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个我正在为 iOS 7 编写的应用程序。我正在使用导航栏,我想要一个漂亮的后退按钮。我注意到在对象菜单的导航栏上有一个漂亮的后退按钮:
但是,当我添加 UIBarButtonItem 时,我无法在按钮标识符列表下找到它:
我怎样才能得到这个新的性感(因为没有更好的词)后退按钮?为什么 Xcode 会在导航控制器下拥有它,但没有将它作为实际按钮?
谢谢。
UINavigationItem *item = [[UINavigationItem alloc] initWithTitle:@"BackButton"]; [self.myNavBar pushNavigationItem:item animated:YES];