I was discovering some code from documentation which basically displays photos from our albums.
So this apps, when we choose all photos from our device, shows in grid every image and video. Every cell has size (80, 80)
, but the problem is when we increase this size (e.g. in storyboard) to let's say (120, 120)
. Know when we scroll very fast to the bottom of collection view (assuming that we have more than 200 photos in our phone, which is quite popular case) the app crashes without stopping on breakpoint in AppDelegate, but it prints this:
objc[68113]: Class PLBuildVersion is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices (0x1171ea998) and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices (0x11700c880). One of the two will be used. Which one is undefined.
Am I doing something wrong? ;)