我有一个UINavigationController,它的左右按钮属性设置。我没有把标题放在中间,而是想在那里放一个按钮。我不确定如何实现这一点。
CODE:
UIBarButtonItem* titleButton = [[UIBarButtonItem alloc]
initWithTitle:symbol
style:UIBarButtonItemStyleBordered
target:self
action:@selector(addToWatchlistButtonClicked:)];
self.navigationItem.titleView = titleButton;
答案 0 :(得分:6)
使用 UINavigationItem 的 titleView 属性。
self.navigationItem.titleView = button;