如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? [英] How to add 2 buttons into the UINavigationbar on the right side without IB?

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

问题描述

如何在没有 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]];

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

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆