是否可以使用Swift发送短信而无需使用presentViewController
?我想按一个按钮让它发送短信。
目前我正在这样做:
messageVC.body = "MESSAGE"
messageVC.recipients = [phoneNumber]
messageVC.messageComposeDelegate = self
self.presentViewController(messageVC, animated: false, completion: nil)
感谢任何帮助。