From 627303f4e32eec9f07c370769950b99bf8ae3c95 Mon Sep 17 00:00:00 2001 From: "Chowdhury, Shohrab" Date: Wed, 23 Oct 2019 16:00:09 -0400 Subject: [PATCH] show modal as full screen ios 13 --- .../PresentationHandling/MVMCorePresentAnimationOperation.m | 1 + 1 file changed, 1 insertion(+) diff --git a/MVMCore/MVMCore/PresentationHandling/MVMCorePresentAnimationOperation.m b/MVMCore/MVMCore/PresentationHandling/MVMCorePresentAnimationOperation.m index 15b60fc..797346c 100644 --- a/MVMCore/MVMCore/PresentationHandling/MVMCorePresentAnimationOperation.m +++ b/MVMCore/MVMCore/PresentationHandling/MVMCorePresentAnimationOperation.m @@ -23,6 +23,7 @@ if (self = [super init]) { self.presentedViewController = presentedViewController; self.presentingViewController = presentingViewController; + self.presentedViewController.modalPresentationStyle = UIModalPresentationFullScreen; self.animate = animated; } return self;