2015-05-29 82 views

回答

0

重要邮件撰写界面本身不是定制的,不得通过您的应用程序进行修改。

阅读Document

0

是的。只需设置邮件编辑器视图控制器的视图的色调颜色,它将用于栏按钮项目以及非破坏性警报控制器按钮。经测试在iOS 10.

let mail = MFMailComposeViewController() 
... 
mail.view.tintColor = #colorLiteral(red: 0.3647058904, green: 0.06666667014, blue: 0.9686274529, alpha: 1) 
present(mail, animated: true, completion: nil) 

enter image description here