Override UIAppearance property for MFMailComposeViewController

前端 未结 3 1333
[愿得一人]
[愿得一人] 2020-12-09 04:34

I am using the UIAppearance protocol to set the background image of UINavigationBar objects throughout my app.

[[UINavigationBar appearance] setBackgroundIma         


        
3条回答
  •  一向
    一向 (楼主)
    2020-12-09 04:46

    Simply set the tintColor on the MFMailComposeViewController instance:

    [mailInstance.navigationBar setTintColor:[UIColor someColor]];
    

提交回复
热议问题