PHImageManager의 requestImage의 image가 nil로 오는 문제..
사슴비행기
잘 되던 로직이 갑자기 안돼기 시작해서 디버깅을 해보니 PHImageManager.default().requestImage(for: selectedImages[i], targetSize: /*CGSize(width: 200, height: 200)*/PHImageManagerMaximumSize, contentMode: .aspectFit, options: option) { result, info in thumbnail = result! } 이 부분에서 result가 nil로 와서 문제가 생기는 거였다. 하지만 해당 이슈를 아무리 검색해봐도 찾지 못하다가 한 stackoverflow를 정독하면서 해결방법을 찾았다. 하지만 이유는 모르겠다... 그냥 답변으로 준 것들을 다 돌려보다가.. 일단 해당 글의 주..