Show album organizer for profile picker

This is in line with attachment picking and let's the user find photos
outside of "moments".

// FREEBIE
pull/1/head
Michael Kirk 8 years ago
parent 92a2fd6b69
commit 5e878b486e

@ -89,9 +89,9 @@ NS_ASSUME_NONNULL_BEGIN
UIImagePickerController *picker = [[UIImagePickerController alloc] init]; UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self; picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum; picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeSavedPhotosAlbum]) { if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {
picker.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeImage, nil]; picker.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeImage, nil];
[self.delegate.fromViewController presentViewController:picker [self.delegate.fromViewController presentViewController:picker
animated:YES animated:YES

Loading…
Cancel
Save