-3

如何在 iphone 应用程序中实现接口方向。我想将界面方向应用于所有视图控制器。

4

1 回答 1

2

在您的 AppDelegate.m 文件集中:

景观

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
    return UIInterfaceOrientationMaskLandscape;
}

对于肖像:

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
    return UIInterfaceOrientationMaskPortrait;
}

对彼此而言:

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
     return (UIInterfaceOrientationMaskAll);
}
于 2013-11-01T12:23:33.817 回答