How to add 2 buttons into the UINavigationbar on the right side without IB?(如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar?)
本文介绍了如何在没有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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar?
基础教程推荐
猜你喜欢
- 从 UIWebView 访问元数据 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- UINavigationBar 隐藏按钮文本 2022-01-01
- 在 iOS 7 下 CCMenu 错位 2022-01-01
- 更改 UITableView 部分标题的颜色 2022-01-01
- Android - 如何在runOnUiThread 中将数据传递给Runnable? 2022-01-01
- UINavigationItem 的持久 rightBarButtonItem 属性 2022-01-01
- 在视图控制器的宽度上水平均匀分布 UIButton 的最简单方法? 2022-01-01
- EditText 中的 setHintTextColor() 2022-01-01
- Firebase 云消息传递令牌未生成 2022-01-01