我正在尝试创建一个应用程序,以某种顺序排列来自iphone相册的所有照片。因此,我必须做的第一件事是从照片库中检索所有照片。是否可以在swift中以编程方式执行此操作?
答案 0 :(得分:0)
是的,您可以通过
执行此操作 var photos: PHFetchResult<PHAsset>!
let asset = photos!.object(at: indexPath.row)
let width: CGFloat = 150
let height: CGFloat = 150
let size = CGSize(width:width, height:height)
PHImageManager.default().requestImage(for: asset, targetSize: size, contentMode: PHImageContentMode.aspectFill, options: nil) { (image, userInfo) -> Void in
imageView.image = image
}
然后显示该图像:(可能在集合视图中)
sudo apt-get install libeigen3-dev