iOS設定導航與其標題的顏色及字型大小和系統預設TabBar的相關設定與使用方法,iostabbar

來源:互聯網
上載者:User

iOS設定導航與其標題的顏色及字型大小和系統預設TabBar的相關設定與使用方法,iostabbar

第一步:

//在info.plist中添加一個欄位:view controller -base status bar 設定為NO;
//導航顏色
[[UINavigationBar appearance] setBarTintColor:[UIColor XXXX]];
[[UITableViewCell appearance] setBackgroundColor:[UIColor XXXX]];

//設定狀態列(訊號區)白色
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];

//預設帶有一定透明效果,可以使用以下方法去除系統效果
[navigationController.navigationBar setTranslucent:NO];

//更改導航標題字型大小與顏色要在第一級版面設定 如下
// 設定導航預設標題的顏色及字型大小
self.navigationController.navigationBar.titleTextAttributes = @{UITextAttributeTextColor: [UIColor whiteColor], UITextAttributeFont:[UIFont boldSystemFontOfSize:18]};

 

 

第二步:

//UIImageRenderingModeAlwaysOriginal 讓圖片表現的模式為圖片的原始樣式 用於去掉系統添加的顏色
if ([[UIDevice currentDevice] systemVersion].floatValue >= 8.0) {
self.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"title" image:[[UIImage imageNamed:@"Image.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] selectedImage:[[UIImage imageNamed:@"ImageS.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];

}else{

self.tabBarController.tabBarItem.title = @"title";
if ([[UIDevice currentDevice] systemVersion].floatValue >= 7.0) {

[self.tabBarController.tabBarItem setFinishedSelectedImage:[[UIImage imageNamed:@"Image.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] withFinishedUnselectedImage:[[UIImage imageNamed:@"ImageS.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
}else{
[self.tabBarController.tabBarItem setFinishedSelectedImage:[UIImage imageNamed:@"Image.png"] withFinishedUnselectedImage:[UIImage imageNamed:@"ImageS.png"]];
}
}
//tabbar顏色 用於更改字型顏色
[self.tabBarController.tabBar setTintColor:[UIColor XXXX]];

 Demo地址:

https://github.com/wly314/HappyTravel

歡迎交流。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.