再次提问当我使用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
您可以选择哪一套最适合您.