Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

objective c - Prohibit rotation in iOS 8 for UIModalPresentationCustom modalPresentationStyle

I use this to present a clearColor UIViewController in iOS 8:

 self.modalPresentationStyle = UIModalPresentationCustom;
 [_rootViewController presentViewController:self animated:NO completion:nil];

In this UIViewController I set

- (BOOL)shouldAutorotate
{
  return NO;
}

But I can rotate this viewController when self is presenting, When I use self.modalPresentationStyle =UIModalPresentationCurrentContext it will not clearColor but can not rotate. For UIModalPresentationCustom style how to prohibit rotation?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I also tried to present a clear color UIViewController in iOS 8+ choosing UIModalPresentationCustom but failed to prohibit autorotation.

What worked for me was using UIModalPresentationOverFullScreen instead and the autorotation methods worked as intended:

UIModalPresentationOverFullScreen

A view presentation style in which the presented view covers the screen. The views beneath the presented content are not removed from the view hierarchy when the presentation finishes. So if the presented view controller does not fill the screen with opaque content, the underlying content shows through.

Available in iOS 8.0 and later.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...