From 3f8c53f7f35970f9ceb9fa5eee18febfd6febb9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20C=C3=A9sar?= Date: Sun, 31 Jul 2016 17:13:57 +0200 Subject: [PATCH] CB-11410: (ios) fix cameraPopoverHandle.setPosition This closes #224 --- src/ios/CDVCamera.m | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ios/CDVCamera.m b/src/ios/CDVCamera.m index 42dd469..f2b17f4 100644 --- a/src/ios/CDVCamera.m +++ b/src/ios/CDVCamera.m @@ -240,9 +240,13 @@ static NSString* toBase64(NSData* data) { - (void)repositionPopover:(CDVInvokedUrlCommand*)command { - NSDictionary* options = [command argumentAtIndex:0 withDefault:nil]; + if (([[self pickerController] pickerPopoverController] != nil) && [[[self pickerController] pickerPopoverController] isPopoverVisible]) { - [self displayPopover:options]; + [[[self pickerController] pickerPopoverController] dismissPopoverAnimated:NO]; + + NSDictionary* options = [command argumentAtIndex:0 withDefault:nil]; + [self displayPopover:options]; + } } - (NSInteger)integerValueForKey:(NSDictionary*)dict key:(NSString*)key defaultValue:(NSInteger)defaultValue