Notice
Recent Posts
Recent Comments
Link
Tags
- WWDC
- Swift
- Split View
- 전달인자 레이블
- lineBreakStrategy
- 스위프트
- Accessibility
- 애플
- UIKit
- CollectionView
- Human Interface Guidelines
- DiffableDataSource
- UILabel
- Apple
- 야곰아카데미
- TOSS
- github
- lineBreakMode
- 디자인패턴
- LanguageGuide
- IOS
- iPad
- iTerm
- Combine+UIKit
- orthogonalScrollingBehavior
- HIG
- 앱개발
- Keychain
- 애플사이다
- GOF
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Today
- Total
목록mailto (1)
애플사이다의 iOS 개발 일지
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cPlwwM/btrUatOdMc6/GZLOUrzApHj0yQ1cBpc760/img.png)
대부분의 상용 앱에는 My 탭 또는 설정 탭의 '문의하기' 항목이 있다. 문의하기를 누르면 Mail 앱 (시스템 기본 앱)을 띄우면서 이메일을 작성하도록 사용자를 유도할 수 있는데, 이때 수신자 메일주소, 제목, 내용에 미리 원하는 값을 채워서 이메일 템플릿을 만들 수 있다. private func showEmailWithTemplate(subject: String, body: String) { // ✅ 이메일 템플릿 설정 var components = URLComponents() components.scheme = "mailto" components.path = "whatWeEat_help@gmail.com" // 메일 주소 components.queryItems = [ URLQueryItem(name..
iOS
2022. 12. 22. 07:00