-
Photos Framework를 이용하여 사진을 가져오자. 샘플코드앱등이에게 살충제를 뿌린다./iOS 2017. 3. 11. 23:14
<아이폰의 사진앱>
http://rhammer.tistory.com/229에서 Photos 프레임워크의 주요 클래스들에 대한 이야기를 했습니다.
하지만 샘플코드가 있어야 이해가 빠를듯 하여 샘플코드를 작성해보았습니다.
이 샘플코드를 작동시키기 위해서 필요한 조건은 아래와 같습니다.
1. XCode8, Swift3
2. 새 프로젝트를 만들면 스토리보드의 Initial ViewController가 UIViewController로 되어있죠? 이 친구를 UICollectionViewController로 바꿔주세요.
3. 새롭게 만든 UICollectionViewController의 Cell은 ImageCell이라는 클래스로 바꿔주시고, 셀에는 이미지뷰를 추가하여 아래 샘플코드의 IBOutlet으로 연결해주세요.
4. Privacy - Photo Library Usage Description를 추가해서 문구를 설정해주세요.
샘플코드는 ViewController.swift하나 입니다.
프로젝트에서 자동으로 생성한 ViewController.swift를 요놈으로 통째로 바꿔주세요.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersimport UIKit import Photos import PhotosUI class ViewController: UICollectionViewController { var allPhotos: PHFetchResult<PHAsset>! let imageManager = PHCachingImageManager() override func viewDidLoad() { super.viewDidLoad() fetchAllPhotos() } // 전체사진 fetch func fetchAllPhotos() { let allPhotosOptions = PHFetchOptions() allPhotosOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: true)] allPhotos = PHAsset.fetchAssets(with: allPhotosOptions) collectionView?.reloadData() } override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return allPhotos.count } override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let assetCell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! ImageCell let asset = allPhotos.object(at: indexPath.item) assetCell.representedAssetIdentifier = asset.localIdentifier imageManager.requestImage(for: asset, targetSize: CGSize(width: 100, height: 100), contentMode: .aspectFill, options: nil, resultHandler: { image, _ in if assetCell.representedAssetIdentifier == asset.localIdentifier { assetCell.imageView.image = image } }) return assetCell } } class ImageCell: UICollectionViewCell { @IBOutlet weak var imageView: UIImageView! var representedAssetIdentifier: String! } 앱실행화면
깃헙에 올리기엔 좀 그런 프로젝트라서, 프로젝트를 통째로 원하시는분은 댓글달아주세요.
10분안에 메일 갑니다~
'앱등이에게 살충제를 뿌린다. > iOS' 카테고리의 다른 글
[UICollectionView] UICollectionViewFlowLayout 그리고 UICollectionViewDelegateFlowLayout (0) 2017.04.14 [iOS] 얼굴인식을 위한 CIDetect를 알아보자. (0) 2017.04.10 [iOS] Photos Framework를 알아보자. (간단히) (3) 2017.03.11 [XCode] Xcode 템플릿(Template)을 만들어보자. (0) 2017.03.10 [푸쉬알림] iOS앱에서 푸쉬알림 등록하기 (AppDelegate 사이클정도만) (0) 2017.03.10