ios - Changing color of text on send button in disabled state on MFMailComposeViewController -


i want change send button text color when in disabled state.

enter image description here

here code -

if mfmailcomposeviewcontroller.cansendmail() {     let mail = mfmailcomposeviewcontroller()     mail.navigationbar.tintcolor = uicolor.red     mail.mailcomposedelegate = self     present(mail, animated: true) } else {     // show failure alert } 


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -