如何在没有IB的情况下在右侧的UINavigationbar中添加2个按钮?

如何在没有IB的情况下在右侧的UINavigationbar中添加2个按钮?

问题描述:

如何在没有XIB的情况下将2个按钮添加到 UINavigationBar

2个按钮应该在 UINavigationBar 。

How can I add 2 buttons into the UINavigationBar without XIB?
The 2 buttons should be aligned on the right side of the UINavigationBar.

我知道如何添加一个按钮,但是两个按钮怎么样?

I know how I can add one button, but how about two?

使用iOS 5+就可以轻松实现:

With iOS 5+ it's as easy as:

UIBarButtonItem *btnShare = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(share)];
UIBarButtonItem *btnRefresh = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(refresh)];
[self.navigationItem setRightBarButtonItems:[NSArray arrayWithObjects:btnShare, btnRefresh, nil]];