如何在iPhone应用程序中拥有2个leftBarButtonItems,并且1是默认的后退按钮?

时间:2012-04-16 19:10:43

标签: iphone xcode uinavigationcontroller uibarbuttonitem

我想要2个leftBarButtonItems,但保留其中一个项目作为导航控制器的默认后退按钮。我已经成立了:

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

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

1 个答案:

答案 0 :(得分:19)

确保将leftItemsSupplementBackButton设置为YES。

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