From 13fbc08b938ec14cd9a975898c912911f731059b Mon Sep 17 00:00:00 2001 From: dharmesh Date: Sat, 11 Jul 2020 08:47:45 +0530 Subject: [PATCH] Explicitly set presentation style to full screen, because, otherwise it is showing in page sheet. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:11786 Change-Id: I66e24127c249d342dc3cc3df20a78dcde0429da3 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/179040 Reviewed-by: Kári Helgason Reviewed-by: Tommi Commit-Queue: Kári Helgason Commit-Queue: Tommi Cr-Commit-Position: refs/heads/master@{#31751} --- AUTHORS | 1 + examples/objc/AppRTCMobile/ios/ARDMainViewController.m | 1 + 2 files changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index 689220bb33..63d90c271d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -20,6 +20,7 @@ Cyril Lashkevich David Porter Dax Booysen Danail Kirov +Dharmesh Chauhan Dirk-Jan C. Binnema Dmitry Lizin Eric Rescorla, RTFM Inc. diff --git a/examples/objc/AppRTCMobile/ios/ARDMainViewController.m b/examples/objc/AppRTCMobile/ios/ARDMainViewController.m index dea7742a1b..a3ede07f3b 100644 --- a/examples/objc/AppRTCMobile/ios/ARDMainViewController.m +++ b/examples/objc/AppRTCMobile/ios/ARDMainViewController.m @@ -134,6 +134,7 @@ static NSString *const loopbackLaunchProcessArgument = @"loopback"; delegate:self]; videoCallViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; + videoCallViewController.modalPresentationStyle = UIModalPresentationFullScreen; [self presentViewController:videoCallViewController animated:YES completion:nil];