We can create and show a text composer like so:
let controller = MFMessageComposeViewController()
controller.body = messageText
controller.recipients = numbers
controller.messageComposeDelegate = self
self.present(controller, animated: true, completion: nil)
Is it possible to present an MFMessageComposeViewController with body
highlighted so that the user can just start typing to enter a new message if they do not like the default message we have provided?
I looked through the docs but did not find any options for this.