Allow me to preface this by saying this is my first time using the ALAssetsLibrary. I need to access the most recent photo in the user's saved photo gallery. It seems that to do this, I have to create an ALAssetsLibrary instance and iterate over every item in the user's gallery before selecting the last image. This is always worst-case scenario. Is there a faster/better way to approach this problem?
|
You don't have to enumerate all the photos in the user's gallery.
The ALAssetsGroup class has a method In your case it's only the last one so set indexSet to As @mithuntnt mentioned, you can get the ALAssetsGroup for the photo library using |
|||||
|
|
There is only one enumeration method. So this is the only way. I needed the last imported photos. You can have some filter similar to this.
... |
|||
|
|
|
What about this:
|
|||
|
|