我的纵向/倒置方向代码是:
-(UIInterfaceOrientationMask)supportedInterfaceOrientations{
return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);
}
SLComposeViewController
不会覆盖supportedInterfaceOrientations
,因此它会继承UIViewController
的默认实现,该实现为iPhone返回UIInterfaceOrientationsMaskAllButUpsideDown
。
我创建了SLComposeViewController
的子类,但现在如何覆盖supportedInterfaceOrientations
?