本文介绍了如何在没有IB的情况下在右侧的UINavigationbar中添加2个按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

2个按钮应该在<$ c的右侧对齐$ c> 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]];

这篇关于如何在没有IB的情况下在右侧的UINavigationbar中添加2个按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 04:41