Is there a way to show the UIImagePickerController photo library interface such that when it comes up it starts at the bottom of the library which is where the newest images are in iOS4? 开发者_开发问答 Apparently this is how it worked in 3.x.
Thanks
Try changing your sourceType from SavedPhotoAlbums to PhotoLibrary:
imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
After selecting the desired album, the next photo selection view will show the most recent images at the bottom.
However, this adds an additional step, since users need to select an album before viewing the photos. This works for the Camera Roll, but synced albums still show photos at the top.
I'm not too familiar with iOS dev, but looking at the doc for this @ Apple: http://developer.apple.com/iphone/library/documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html
I don't see any way you can do this in one go.
Did you try simply scrolling down after loading the image picker? Or is that not possible?
Sorry, just throwing ideas out there.
Cheers,
Turns out the answer here is no.
精彩评论