-
반응형
import MessageUI //sms mail
class ViewController: UIViewController ,WKScriptMessageHandler,MFMessageComposeViewControllerDelegate ,MFMailComposeViewControllerDelegate
// [비동기 처리 수행]
DispatchQueue.main.async {
let controller = MFMessageComposeViewController()
controller.body = body[1] as! String //문자 내용
if body[0] as! String != "" { // 발송자 번호 모를땐 추가 안함.
controller.recipients = [body[0] as! String]
}
controller.messageComposeDelegate = self
self.present(controller, animated: true, completion: nil)
}
반응형'IOS' 카테고리의 다른 글
문자 클립보드 복사하기. (0) 2023.09.15 사파리(브라우저) 연결하기. (0) 2023.09.15 값 저장하고 가져오기 (0) 2023.09.15 개발자 인증서 , 기기 등록하기 , identifiers 등등등 (1) 2017.02.13 Missing Info.plist key (5) 2017.02.10