在iOS7下踏揣,默認(rèn)導(dǎo)航欄背景,顏色是這樣的狂塘,接下來我們就進(jìn)行自定義录煤,如果你僅僅是更改一下背景和顏色,代碼會(huì)很簡(jiǎn)單荞胡,不需要很復(fù)雜的自定義View來替代leftBarItem
更改導(dǎo)航欄的背景和文字Color
方法一:
[objc] view plain copy
//set NavigationBar 背景顏色&title 顏色
[self.navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:20/255.0 green:155/255.0 blue:213/255.0 alpha:1.0]];
[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,nil]];
效果如下:
我們把背景改成了藍(lán)色妈踊,title文字改成了白色,是不是很簡(jiǎn)單呢泪漂?NavigationBar極其push過去的子頁(yè)面也會(huì)是你修改后的背景顏色
方法二:
[objc] view plain copy
//設(shè)置NavigationBar背景顏色
[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];
//@{}代表Dictionary
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
效果如下:
在導(dǎo)航欄使用背景圖片:
如果您的應(yīng)用程序使用了自定義圖像作為欄的背景廊营,你需要提供一個(gè)“更大”的圖片,使其延伸了狀態(tài)欄的后面萝勤。導(dǎo)航欄的高度現(xiàn)在是從44點(diǎn)(88像素)更改為64點(diǎn)(128像素)露筒。仍然可以使用了setBackgroundImage:方法來指定自定義圖像的導(dǎo)航欄。下面是代碼行設(shè)置背景圖片:
[objc] view plain copy
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"nav_bg.png"] forBarMetrics:UIBarMetricsDefault];
效果圖和上面的一樣敌卓,我就不貼出來了慎式。
改變導(dǎo)航欄標(biāo)題的字體
就像iOS 6,我們可以通過使用導(dǎo)航欄的“titleTextAttributes”屬性來自定義的文本樣式”窭簦可以指定字體癣防,文字顏色,文字陰影顏色掌眠,文字陰影在文本標(biāo)題偏移屬性字典蕾盯,使用下面的文本屬性鍵:
UITextAttributeFont - 字體UITextAttributeTextColor - 文字顏色UITextAttributeTextShadowColor - 文字陰影顏色UITextAttributeTextShadowOffset - 偏移用于文本陰影
[objc] view plain copy
NSShadow *shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8];
shadow.shadowOffset = CGSizeMake(0, 1);
[[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:245.0/255.0 green:245.0/255.0 blue:245.0/255.0 alpha:1.0], NSForegroundColorAttributeName,
shadow, NSShadowAttributeName,
[UIFont fontWithName:@"HelveticaNeue-CondensedBlack" size:21.0], NSFontAttributeName, nil nil]];
使用圖片作為導(dǎo)航欄標(biāo)題
不想標(biāo)題欄是光禿禿的文字?可以通過使用代碼行中的圖像或標(biāo)志取代它:簡(jiǎn)單地改變titleview用來自定義蓝丙,(適用于較低版本)
[objc] view plain copy
self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"appcoda-logo.png"]];
效果如下刑枝,我隨便用了個(gè)圖片,別介意:
添加多個(gè)欄按鈕項(xiàng)目
您希望添加導(dǎo)航欄的一側(cè)不止一個(gè)欄按鈕項(xiàng)目迅腔,無論是leftBarButtonItems和rightBarButtonItems 您在導(dǎo)航欄左側(cè)/右側(cè)指定自定義欄按鈕項(xiàng)目。比如你想添加一個(gè)攝像頭和一個(gè)共享按鈕右側(cè)的吧靠娱。您可以使用下面的代碼:
[objc] view plain copy
UIBarButtonItem *shareItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action: nil nil];
UIBarButtonItem *cameraItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:self action: nil nil];
NSArray *itemsArr = @[shareItem,cameraItem];
self.navigationItem.rightBarButtonItems = itemsArr;
自定義后退按鈕的文字和顏色
通常情況下沧烈,我們使用UINavigationController時(shí),push到的子頁(yè)面像云,左上角會(huì)是系統(tǒng)自動(dòng)取值上一層父頁(yè)面的title名稱锌雀,默認(rèn)情況是這樣,那么我們?cè)撊绾涡薷乃兀?/p>
左側(cè)顯示了父頁(yè)面的title:用戶登錄迅诬,可是我們想修改成返回腋逆,方式有很多,舉些例子
方法一:
通過設(shè)置navigationItem的backBarButtonItem可以直接更換文字侈贷,【注意惩歉,要在父視圖的Controller中設(shè)置】如下:
[objc] view plain copy
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:UIBarButtonItemStylePlain target:nil action:nil];
self.navigationItem.backBarButtonItem = item;
效果如下:
所有的子界面返回時(shí)都變成了我們定義的文字,如果不想顯示文字俏蛮,直接""撑蚌,就會(huì)單獨(dú)顯示一個(gè)系統(tǒng)的返回箭頭圖標(biāo),也是很清晰的感覺搏屑。
做到這里發(fā)現(xiàn)文字顏色和背景有重復(fù)争涌,那么如何自定義其顏色呢?在iOS7辣恋,可以改變tintColor屬性亮垫,它提供了一個(gè)快速和簡(jiǎn)單的方式,下面是一個(gè)示例代碼片段:
[objc] view plain copy
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
效果如下:
全是系統(tǒng)的圖標(biāo)和文字伟骨,這回看著舒服了饮潦,有木有?【除了后退按鈕携狭,請(qǐng)注意害晦,tintColor屬性影響所有按鈕標(biāo)題和按鈕圖像】
最后舉個(gè)例子,另外一種實(shí)現(xiàn)自定義導(dǎo)航控制器返回按鈕,代碼如下:
[objc] view plain copy
[self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor redColor],NSFontAttributeName:[UIFont systemFontOfSize:19.0]}];
self.title=[NSString stringWithFormat:@"第%lu頁(yè)",(unsigned long)self.navigationController.viewControllers.count];
//自定義返回按鈕
UIImage *backButtonImage = [[UIImage imageNamed:@"fanhui.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 30, 0, 0)];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:backButtonImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
//將返回按鈕的文字position設(shè)置不在屏幕上顯示
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(NSIntegerMin, NSIntegerMin) forBarMetrics:UIBarMetricsDefault];
效果如下:
最后說一下使用pushViewController切換到下一個(gè)視圖時(shí)壹瘟,navigation controller按照以下3條順序更改導(dǎo)航欄的左側(cè)按鈕(本段摘自網(wǎng)絡(luò)):
1鲫剿、如果B視圖有一個(gè)自定義的左側(cè)按鈕(leftBarButtonItem),則會(huì)顯示這個(gè)自定義按鈕稻轨;2灵莲、如果B沒有自定義按鈕,但是A視圖的backBarButtonItem屬性有自定義項(xiàng)殴俱,則顯示這個(gè)自定義項(xiàng)政冻;3、如果前2條都沒有线欲,則默認(rèn)顯示一個(gè)后退按鈕明场,后退按鈕的標(biāo)題是A視圖的標(biāo)題;