How to change buttons in MFMailComposeViewController?

前端 未结 3 1744
Happy的楠姐
Happy的楠姐 2021-01-17 12:31

In my app I am using the MFMailComposeViewController. I have placed a back and Done button in the title bar. I have the title bar to be in black co

3条回答
  •  悲哀的现实
    2021-01-17 13:04

    For Swift (I am using Swift 1.2)

    var mc: MFMailComposeViewController = MFMailComposeViewController()
    mc.mailComposeDelegate = self
    mc.setSubject(emailTitle)
    mc.setToRecipients(toRecipients)
    mc.navigationBar.tintColor = UIColor.blackColor()
    

提交回复
热议问题