通過appearance設定app主題

來源:互聯網
上載者:User

標籤:

 

參考資料

oschina源碼
http://git.oschina.net/oschina/iphone-app
TintColor解析
http://blog.kingiol.com/blog/2014/01/09/ios7-day-by-day-day6-tint-color/

oschina源碼分析
    //再plist檔案中設定View controller-based status bar appearance 為 NO才能起效    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];    //導航條上標題的顏色    NSDictionary *navbarTitleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};    [[UINavigationBar appearance] setTitleTextAttributes:navbarTitleTextAttributes];    //導航條上UIBarButtonItem顏色    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];    //TabBar選中表徵圖的顏色,預設是藍色    [[UITabBar appearance] setTintColor:[UIColor colorWithHex:0x15A230]];    //TabBarItem選中的顏色    [[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor colorWithHex:0x15A230]} forState:UIControlStateSelected];    //導航條的背景顏色    [[UINavigationBar appearance] setBarTintColor:[UIColor navigationbarColor]];    //TabBar的背景顏色    [[UITabBar appearance] setBarTintColor:[UIColor titleBarColor]];    [UISearchBar appearance].tintColor = [UIColor redColor];    //當某個class被包含在另外一個class內時,才修改外觀。    [[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setCornerRadius:14.0];    [[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setAlpha:0.6];    UIPageControl *pageControl = [UIPageControl appearance];    pageControl.pageIndicatorTintColor = [UIColor colorWithHex:0xDCDCDC];    pageControl.currentPageIndicatorTintColor = [UIColor grayColor];    [[UITextField appearance] setTintColor:[UIColor nameColor]];    [[UITextView appearance]  setTintColor:[UIColor nameColor]];

通過appearance設定app主題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.