인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

허두영's profile image
허두영

asked

UIKit - iOS14 Practical Guide <Becoming a Real iOS App Developer>

PhotoGallery_4

에러 질문

Written on

·

763

0

2022-01-16 14:17:14.486800+0900 PhotoGalleryApp[1834:763005] [core] "Error returned from daemon: Error Domain=com.apple.accounts Code=7 "(null)""

 
 
실행창에 이러한 내용이 나오는데 혹시 이유를 알 수 있을까요? 구글링해도 잘모르겠네요
구현한 기능들은 잘 수행됩니다.
swiftios

Answer 1

1

안녕하세요 

 

아래처럼 networkAccessAllowd를 true로 해주시면 될 것 같습니다.

iCloud에 있는 이미지를 가져와야 되는데 기본으로 false로 되어 있어서 가져오지 못해서 나는 에러라고 보시면 될 것 같습니다.

        var options = PHImageRequestOptions()

        options.isNetworkAccessAllowed = true

 

허두영's profile image
허두영

asked

Ask a question