From 8bd64c7181faaf11141043d04d1b8700a03d647f Mon Sep 17 00:00:00 2001 From: Robert Abeyta Date: Mon, 18 May 2015 13:34:02 -0700 Subject: [PATCH] set outputType from passed in options --- src/ios/SOSPicker.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ios/SOSPicker.m b/src/ios/SOSPicker.m index 504622c..912345e 100644 --- a/src/ios/SOSPicker.m +++ b/src/ios/SOSPicker.m @@ -29,6 +29,7 @@ typedef enum : NSUInteger { self.width = [[options objectForKey:@"width"] integerValue]; self.height = [[options objectForKey:@"height"] integerValue]; self.quality = [[options objectForKey:@"quality"] integerValue]; + self.outputType = [[options objectForKey:@"outputType"] integerValue]; // Create the an album controller and image picker ELCAlbumPickerController *albumController = [[ELCAlbumPickerController alloc] init];