I am a new guy to iOS. Recently, I am developing an iOS application need to check image (in iOS Photos) created date time and modified date time to sort the
You can retrieve the creation date of the asset using the ALAssetPropertyDate property:
ALAsset* asset; ... NSDate* date = [asset valueForProperty:ALAssetPropertyDate];
I'm not sure of a method to retrieve the last modified date.