Change iOS 11 large title color

前端 未结 5 1642
时光取名叫无心
时光取名叫无心 2021-01-05 11:41

I\'m using the new enlarged navigation bar titles in iOS 11. But I can\'t seem to be able to change the textColor.

I tried doing:

self.navigationCont         


        
5条回答
  •  余生分开走
    2021-01-05 11:56

    iOS 11

    Objective-C

    if (@available(iOS 11.0, *)) {
        self.navigationController.navigationItem.largeTitleDisplayMode =  UINavigationItemLargeTitleDisplayModeAlways;
        self.navigationController.navigationBar.prefersLargeTitles = true;
    
    // Change Color
        self.navigationController.navigationBar.largeTitleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
    
    } else {
        // Fallback on earlier versions
    }
    

提交回复
热议问题