再次提问当我使用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
您可以选择哪一套最适合您.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。