1

在我的应用程序中,我有一个UINavigationController. 我想添加当用户按下导航时会发生某些事情的方法。所以我添加了一个按钮titleview

self.navigationItem.titleView = self.titleButton;

现在我想添加两个按钮rightBarButtonItems

self.navigationItem.rightBarButtonItems = [NSArray arrayWithObjects:self.editButtonItem,self.aToZButton, nil];

而且我注意到这两个东西不能一起工作,如果我添加titleview我只会在右边看到一个按钮。

任何解决方案的想法?其他方式可以点击UINavigationBar

4

1 回答 1

1

Check the frame of the titleButton that you have created. May be reducing it a bit may allow you to add two buttons.

于 2013-08-26T15:11:06.893 回答