- This topic has 7개 답변, 5명 참여, and was last updated 3 years, 3 months 전에 by odyflame.
5 답변 글타래를 보이고 있습니다
-
글쓴이글
-
-
광현참가자
- 글작성 : 15
- 답글작성 : 26
“Error returned from daemon: Error Domain=com.apple.accounts Code=7 “(null)”” 에러가 발생하는 데, 그런데 PHFetchResult를 가져와서
CollectionView 에서 사진을 볼 수 있습니다.
기존에 Photos 를 활용해서 사진 관련 앱 코드를 그대로 따라해도 보고,
인터넷 상에서 에러의 원인이 info.plist 에 제대로 권한 설정 문제라는 의견이 있어
info.plist 에
- Privacy – Photo Library Usage Description
- Privacy – Photo Library Additions Usage Description
를 추가도 해봤는데 에러 메시지는 사라지지 않는 데 해결 방법이 있을 까요?
코드는 조금 디버깅을 위해 단순화 시켰습니다.
import UIKit import Photos class ViewController: UIViewController { @IBOutlet private weak var collectionView: UICollectionView! let cellIdentifier : String = "HorizontalCell" let imgManager : PHCachingImageManager = PHCachingImageManager() var fetchResult : PHFetchResult<PHAsset>? override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. self.setAuthorization() let allPhotosOptions = PHFetchOptions() allPhotosOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: false)] // 디버그 했을 때 fetchAssets 부분을 통과하며 "Error returned from daemon: Error Domain=com.apple.accounts Code=7 "(null)"" // 오류가 발생합니다. self.fetchResult = PHAsset.fetchAssets(with: allPhotosOptions) self.collectionView.reloadData() } func setAuthorization(){ let status = PHPhotoLibrary.authorizationStatus() switch status{ case .authorized: print("접근 권한 얻음") case .denied: print("접근 권한 거부") case .notDetermined: PHPhotoLibrary.requestAuthorization { status in switch status{ case .authorized: print("접근 권한 거부") default: break } } case .restricted: print("제한된 접근 권한") @unknown default: print("접근 권한 얻을 수 없음") } PHPhotoLibrary.shared().register(self) } }2020-06-23 오후 10:46 #9448 -
-
광현참가자
- 글작성 : 15
- 답글작성 : 26
야곰님이 주신 링크도 읽어보고 야곰님 말씀대로
self.fetchResult = PHAsset.fetchAssets(with: nil)
로 해보았습니다. 앨범은 .album 과 .smartalbum 모두 해보아도 같은 에러 메시지가 뜨지만 사진은 가져옵니다.한동안 검색하거나 여러 가지 시도해 보면서 고쳐봐야겠습니다. 문제는 최근에 만들던 사진 어플리케이션에서는 저 에러 메시지가 안 뜨는 게 ㅎㅎ
가로 방향의 collectionView를 연습하려고했던 게 디버깅을 더 공부하게 될 거 같습니다.
혹시 저 프로젝트가 잘못되어서 저런가 해서 오늘 다시 가장 간단한 Photos 를 이용해서 사진 앨범 불러오는 코드를 만들어 봤는데 같은 에러 메시지가 뜨네요.
2020-06-25 오후 9:34 #13290
-
-
-
글쓴이글
5 답변 글타래를 보이고 있습니다
- 답변은 로그인 후 가능합니다.