일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- view
- mac
- 웹뷰
- Realm
- IOS
- Code
- JPA
- FLUTTER
- Git
- Session
- Xcode
- SwiftUI
- Archive
- rxswift
- error
- iOS16
- appstore
- window
- 한글
- Apple
- Swift
- darkmode
- 이미지
- 개발자
- UIButton
- Firebase
- geofencing
- github
- MacOS
- Notification
- Today
- Total
목록UIImagePickerController (2)
EEYatHo 앱 깎는 이야기
한줄 요약 iOS11부터, UIImagePickerController로 사진을 가져올 때는, 라이브러리 권한이 필요없게 되었습니다. [ 관련 WWDC17 영상 ] WWDC말고 관련된 문서가 없네요.. 정리좀 해놓지..ㅡ.ㅡ What's New in Photos APIs - WWDC17 - Videos - Apple Developer Learn all about newest APIs in Photos on iOS and macOS, providing better integration and new possibilities for your app. We'll discuss... developer.apple.com Hello, everybody. It's great to see you. UI Image Pic..

UIImagePickerController 로 카메라를 여는 소스를 작성할 때 요따구로 썼었는데, ( iPad 부분은 덤 ) camera.sourceType = .camera camera.allowsEditing = true if UIDevice.current.userInterfaceIdiom == .pad { //디바이스 타입이 iPad일때 if let popoverController = camera.popoverPresentationController { popoverController.sourceView = view popoverController.sourceRect = CGRect(x: view.bounds.midX, y: view.bounds.midY, width: 0, height: 0) po..