iOs查看方向

时间:2011-10-10 13:34:14

标签: iphone ios

我在我的应用程序MailComposer中使用,如果它在纵向横向中激活,那么它工作正常,但如果我在横向模式下激活它,那么我只看到灰色屏幕。

P.S。 shouldAutorotateToInterfaceOrientation总是返回

1 个答案:

答案 0 :(得分:0)

我已经在我的应用程序中实现了邮件编辑器,并且在两个方向都有效,只需检查此方法

 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Overriden to allow any orientation.
    return YES;
}