iOS change navigation bar title font and color

后端 未结 18 731
青春惊慌失措
青春惊慌失措 2020-12-04 08:40

So i have this code that should change the nav bar title font, but it doenst

    NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFon         


        
18条回答
  •  北海茫月
    2020-12-04 08:52

    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
    }
    

提交回复
热议问题