我是 IOS 新手,我正在使用第三方库来集成我的多个图像/视频选择器。图书馆链接https://github.com/hyperoslo/Gallery
本地图像/视频显示速度足够快,但问题是一旦我使用 iCloud 包含超过 500 多张图像,它需要将近 1 分钟。第一次加载,是他们的任何解决方案减少或几乎消除加载时间。
这是我的代码快照,可能会有所帮助
class MyGalleryViewController: UIViewController, GalleryControllerDelegate,UITabBarControllerDelegate{
let gallery = GalleryController()
override func viewDidLoad() {
super.viewDidLoad()
openGallery()
}
private func openGallery(){
gallery.delegate = self
gallery.modalPresentationStyle = .fullScreen
present(gallery, animated: true, completion: nil)
}
//Rest of galleryController function
}
非常感谢提前。