Да. Если вы посмотрите здесь , вы увидите UIModalPresentationAutomatic
по умолчанию UIModalPresentationPageSheet
. Просто измените ваш modalPresentationStyle на UIModalPresentationFullScreen
.
Сначала создайте ваш новый viewcontroller. Для этого должно быть установлено свойство modalPresentationStyle.
var modalViewController = new UIViewController();
modalViewController.modalPresentationStyle = UIModalPresentationStyle.FullScreen;
Затем представьте этот viewController поверх NavigationPage. NavigationRenderer
имеет свойство под названием ViewController
:
this.ViewController.presentViewController(modalViewController, true, nil);