iOS菜鳥開發-2 導覽列主題

來源:互聯網
上載者:User

標籤:

1、給每個子控制器添加導覽列

/**

 *  初始化一個子控制器

 *

 *  @param child               需要初始化的子控制器

 *  @param title               標題

 *  @param imageName           未選中表徵圖

 *  @param selectedImageName   選中的表徵圖

 */

- (void)setupOneChildVC:(UIViewController *)child title:(NSString *)title imageName:(NSString *)imageName selectedImageName:(NSString *)selectedImageName

{

    //設定標題

    child.tabBarItem.title = title;

      //設定圖片

    child.tabBarItem.image = [UIImage imageNamed:imageName];

    //設定選中的 圖片

    child.tabBarItem.selectedImage = [UIImage imageNamed:selectedImageName];

    //添加導覽列

    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:child];

    // 添加子控制器

    [self addChildViewController:nav];

}

2、自訂導航控制器

建立  NavigationController 繼承 UINavigationController

//設定導覽列主題

+(void)initialize

{

   [self setupNavTheme];

}

+(void)setupNavTheme

{

  // 獲得appearance 對象,就能修改主題

  UINavigationBar *navBar = [UINavigationBar appearance];

     //設定文字顏色

//    NSMutableDictionary *textAttrs = [NSMutableDictionary dictionary];

//    textAttrs[UITextAttributeTextColor] = [UIColor blackColor];

//    設定字型大小

//    textAttrs[UITextAttributeFont] = [UIFont boldSystemFontOfSize:10];

 

}

 

iOS菜鳥開發-2 導覽列主題

聯繫我們

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