Search code examples
iosxcodemessageui

Customize SMS View Controller in iOS


I used this tutorial on iPhone Developer Tips to send an SMS from an app. The methodin the tutorial works.

However, is there a way to customize the colors and fonts in the toolbar? The framework I am using is MessageUI.


Solution

  • The MFMessageComposeViewController is a UINavigationController. You can do anything to it that you would to any other UINavigationController. You can ask for it's navigationBar and set the tintColor. You can also change the navigationItem of the viewController too.