Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- rxswift
- Notification
- geofencing
- github
- 개발자
- Apple
- Code
- 한글
- 이미지
- SwiftUI
- JPA
- window
- Session
- IOS
- MacOS
- Xcode
- FLUTTER
- mac
- Swift
- darkmode
- Firebase
- iOS16
- view
- appstore
- UIButton
- 웹뷰
- Realm
- Git
- Archive
- error
Archives
- Today
- Total
목록MessageUI (1)
EEYatHo 앱 깎는 이야기
Swift ) Mail 앱으로 메일 보내기(MessageUI) - EEYatHo iOS
Swift에서 Mail앱으로 메일을 전송할 수 있는 MessageUI라는 라이브러리를 지원합니다. 1. import해주시고, import MessageUI 2. 액션시트나 Alert를 띄우는 것 마냥 간단하게 Modal 방식으로 present합니다. if MFMailComposeViewController.canSendMail() { let composeVC = MFMailComposeViewController() composeVC.mailComposeDelegate = self // Configure the fields of the interface. composeVC.setToRecipients(["email@example.com", "email2@example.com"]) composeVC.setSu..
iOS, Swift
2021. 4. 8. 00:35