在iOS6中使用UIActivityViewController时,我试图阻止电子邮件编辑器旋转到横向。子类化用于在iOS5中工作的MFMailComposeViewController添加方法以防止旋转,但是如果我将UIActivityViewController子类化并添加:
- (BOOL)shouldAutorotate {
return NO;
}
-(NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
方法确实被调用但不做任何事情。
之前有人这样做过吗?