如何在UINavigationController中添加中间按钮?

时间:2011-08-23 05:31:38

标签: iphone objective-c cocoa-touch uinavigationbar uibarbuttonitem

我有一个UINavigationController,它的左右按钮属性设置。我没有把标题放在中间,而是想在那里放一个按钮。我不确定如何实现这一点。

CODE:

UIBarButtonItem* titleButton = [[UIBarButtonItem alloc] 
                        initWithTitle:symbol 
                                style:UIBarButtonItemStyleBordered 
                               target:self 
                               action:@selector(addToWatchlistButtonClicked:)];

self.navigationItem.titleView = titleButton;

1 个答案:

答案 0 :(得分:6)

使用 UINavigationItem titleView 属性。

self.navigationItem.titleView = button;