diff options
| author | Teddy Wing | 2012-04-22 14:32:40 -0400 |
|---|---|---|
| committer | Teddy Wing | 2012-04-22 14:32:40 -0400 |
| commit | 4a7457c0c371c917ddfe134786ac29a8f8672b79 (patch) | |
| tree | 0709a86b111c1d8a591ded61cd4ec73af8c6645d | |
| parent | 33f1899fcb0619418d15da2009e6d2ffbf2a5688 (diff) | |
| download | Video-Tuneup-4a7457c0c371c917ddfe134786ac29a8f8672b79.tar.bz2 | |
Tried making some changes to the UIImagePickerController property settings to see if that would fix my issues. Didn't.
| -rw-r--r-- | Video Tuneup/ViewController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Video Tuneup/ViewController.m b/Video Tuneup/ViewController.m index 972bcce..a35e00a 100644 --- a/Video Tuneup/ViewController.m +++ b/Video Tuneup/ViewController.m @@ -408,9 +408,10 @@ mScrubber, mediaLibraryButton, mediaLibraryPopover; picker.delegate = self; picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum; picker.mediaTypes = [UIImagePickerController availableMediaTypesForSourceType:picker.sourceType]; + picker.allowsEditing = NO; + picker.videoQuality = UIImagePickerControllerQualityTypeHigh; mediaLibraryPopover = [[UIPopoverController alloc] initWithContentViewController:picker]; [self.mediaLibraryPopover presentPopoverFromRect:[theButton bounds] inView:theButton permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES]; - } - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { |
