Notice
Recent Posts
Recent Comments
Link
Tags
- iPad
- LanguageGuide
- Swift
- github
- 스위프트
- iTerm
- GOF
- 애플
- 야곰아카데미
- 애플사이다
- 전달인자 레이블
- HIG
- IOS
- Accessibility
- Human Interface Guidelines
- TOSS
- lineBreakMode
- UIKit
- Keychain
- 앱개발
- CollectionView
- Split View
- UILabel
- Apple
- WWDC
- orthogonalScrollingBehavior
- Combine+UIKit
- 디자인패턴
- DiffableDataSource
- lineBreakStrategy
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Today
- Total
목록mailto (1)
애플사이다의 iOS 개발 일지

대부분의 상용 앱에는 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