ios – 没有全屏的PresentViewController

前端之家收集整理的这篇文章主要介绍了ios – 没有全屏的PresentViewController前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
再次提问当我使用presentViewController在我当前的一个上呈现一个新的viewcontroller时,它是全屏的.如何让它呈现特定尺寸?或者我应该使用其他方法.

码:

- (IBAction)showProfile:(id)sender {
ProfileView *profileTop = [[ProfileView alloc] init];
profileTop.delegate = self;

[self presentViewController:profileTop animated:YES completion:nil];
}

解决方法

如果您正在为iPad开发应用程序,那么您可以使用viewController的modalPresentationStyle属性,您需要设置为呈现viewController.

它有4个值用于该变量.

UIModalPresentationFullScreen = 0,UIModalPresentationPageSheet,UIModalPresentationFormSheet,UIModalPresentationCurrentContext

您可以选择哪一套最适合您.

原文链接:https://www.f2er.com/iOS/332407.html

猜你在找的iOS相关文章