我想要2个leftBarButtonItems,但将其中一项保留为导航 Controller 的默认后退按钮。我已经设置:

self.navigationItem.leftBarButtonItems = [NSArray arrayWithObjects:archives, ???, nil];

其中archives是我创建的UIBarButtonItem,但不知道数组中将包含默认的后退按钮。有什么建议?

最佳答案

确保将leftItemsSupplementBackButton设置为YES。

self.navigationItem.leftItemsSupplementBackButton = YES;
self.navigationItem.leftBarButtonItems = [NSArray arrayWithObjects:archives, nil];

关于iphone - 我如何在iPhone应用程序中有2个leftBarButtonItems,而1个是默认的后退按钮?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10180155/

10-09 02:16