6

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

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

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

4

1 回答 1

19

确保设置leftItemsSupplementBackButton为 YES。

self.navigationItem.leftItemsSupplementBackButton = YES;
self.navigationItem.leftBarButtonItems = [NSArray arrayWithObjects:archives, nil];
于 2012-04-16T19:18:21.750 回答