iOS 开发之 - iOS6适配 - 导航栏按钮透明方法
生活随笔
收集整理的這篇文章主要介紹了
iOS 开发之 - iOS6适配 - 导航栏按钮透明方法
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
首先上張圖:
1:ios6導(dǎo)航欄默認(rèn)按鈕?
rightBarButtonItem
? 是不是很丑的趕腳?
現(xiàn)在通過以下方法來改變以下;code:
UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeCustom];rightButton.frame = CGRectMake(0, 0, 40, 40);[rightButton setTitle:@"提交" forState:UIControlStateNormal];[rightButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];[rightButton addTarget:self action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside];self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:rightButton];?
如圖:
?
?
ok.好看多了。
轉(zhuǎn)載于:https://www.cnblogs.com/SomnusLove/p/3916209.html
總結(jié)
以上是生活随笔為你收集整理的iOS 开发之 - iOS6适配 - 导航栏按钮透明方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PL/SQL NOCOPY限制模式
- 下一篇: iOS之github第三方框架(持续更新