-
[WWDC2020] Meet the new Photos picker앱등이에게 살충제를 뿌린다./Apple Dev Reference 2022. 8. 15. 00:03
https://developer.apple.com/videos/play/wwdc2020/10652/
간단 정리
새로운 PHPicker라는 이미지피커 등장 (UIImagePickerViewController는 depricated예정)
func presentPicker() { var configuration = PHPickerConfiguration() configuration.filter = .images let picker = PHPickerViewController(configuration: configuration) picker.delegate = self present(picker, animated: true) }
PHPicker는 앱과 별도의 프로세스로 작동한다. 사용자의 Privacy를 보장할 수 있으며 사진첩에 대한 권한도 필요없다.
이 세션은 워낙 많은 블로거분들이 다뤄주셔서 이 정도만..ㅎ
Related Session
[WWDC2021] Improve access to Photos in your app
- 공식 세션: https://developer.apple.com/videos/play/wwdc2021/10046/
- 고무망치 버전: https://rhammer.tistory.com/405
[WWDC2022] What's new in the Photos picker
- 공식 세션: https://developer.apple.com/videos/play/wwdc2022/10023/
- 고무망치 버전: https://rhammer.tistory.com/406
'앱등이에게 살충제를 뿌린다. > Apple Dev Reference' 카테고리의 다른 글
[WWDC2022] What's new in the Photos picker (0) 2022.08.25 [WWDC2021] Improve access to Photos in your app (0) 2022.08.15 [WWDC2022] Discover PhotoKit change history (0) 2022.08.08 [WWDC2022] Embrace Swift Generic (0) 2022.08.08 [AVFoundation] Observing the Playback Time (동영상의 재생시간 Observe하기) (0) 2018.11.06