2015-05-29 49 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