10年積累的網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先制作網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有永清免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
#tab a.on,#tab a.on:link,#tab a.on:visited{color: #ca9eff;background:#4f1090;text-decoration:none;font-size:12px;margin-left:2px} 這是導(dǎo)航菜單被選中時(shí)的代碼,color: #ca9eff是字體顏色,background:#4f1090是背景顏色,如果不想讓導(dǎo)
要設(shè)置透明度只需要修改A值。下面這行代碼意思是修改導(dǎo)航欄的背景顏色,//背景色修改[self.navigationController.navigationBar setBackgroundImage:[UIImage imageWithColor:[UIColor colorWithRGB:255 green:255 blue:255 alpha:1.0]] forBarMetrics:UIBarMetricsDefault];根據(jù)RGBA來修改背景色
狀態(tài)欄的話2113,你把5261導(dǎo)航欄的風(fēng)格設(shè)4102成黑的1653,即可 self.navigationController.navigationBar.barStyle = UIBarStyleBlack;導(dǎo)航欄字內(nèi)體設(shè)為白色容[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]]; [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
這個(gè)要用自定義的view 才能設(shè)置:方法如下//設(shè)置標(biāo)題// self.title = @"title1";//修改title 會改變navigationItem。title ,但反之不會,一般設(shè)置title用此方法就好了// self.navigationController.title = @"title2";// //自定義標(biāo)題// UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];// view.backgroundColor = [UIColor redColor];UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];title.text = @"title3";title.textAlignment = NSTextAlignmentCenter;title.textColor = [UIColor redColor];self.navigationItem.titleView = title;