UIImagePickerControllerSourceTypePhotoLibrary
references the entire photo library, letting the user choose which album. UIImagePickerControllerSourceTypeSavedPhotosAlbum
goes straight to the camera roll album without giving the user a choice as to which album to choose from. They’re similar, but different. You can get to the camera roll from PhotoLibrary
; you can access only the camera roll from UIImagePickerControllerSourceTypeSavedPhotosAlbum
.
Reference.