関西モバイルアプリ研究会 #9 (kanmoba)
Pitfalls of PhotoKit@griffin_stewie
View Slide
Fenrir Inc.@griffin_stewieBouldering: Level 5
PhotoKit
PhotoKit• From iOS 8• Sophisticated• Thread safe
Simple Fetching
Assets Library• Enumerate groups and assets• Filter inside loop• Easy access raw data
PhotoKit• Call fetch methods• Like CoreData• Apply fetch options
Complicated Fetching
PHFetchOptions• dates• pixelWidth• pixelHeight• etc
PhotoKit• Access raw data ?
Darkside
Too slow
Fetching 5000 assets• Assets Library• Takes a few seconds• PhotoKit• Takes a few minutes
Reasons
XPC• Assets Library• Same process as app• PhotoKit• Separate process• Communicate using XPC
Thread safe• Assets Library• Developers should take care of it• PhotoKit• Framework cares
Let's use obediently