, UIModalPresentationPageSheet. :
<!--The header file-->
@interface MyViewController: ViewController{
CGRect realBounds;
}
<!--In the .m file-->
-(void)viewDidLoad{
CGRect newFrame = CGRectMake(self.view.frame.origin.x,
self.view.frame.origin.y,
self.view.frame.size.width,
self.view.frame.size.height);
[self.view setFrame:newFrame];
_realBounds = self.view.bounds;
[super viewDidLoad];
}
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
self.view.superview.bounds = realBounds;
}
UIModalPresentationPageSheet. . iOS 5.1.1 iOS 6 .