不同界面强制横竖屏幕控制

本文介绍了一个iOS应用中如何使用AppDelegate来设置和管理应用的方向。通过重写supportedInterfaceOrientationsForWindow方法,可以指定应用支持的设备方向。此外,通过setOrientationMask方法,可以在运行时动态更改应用的方向。

appdelegate.m


+ (AppDelegate *)sharedInstance {
    return (AppDelegate *)[UIApplication sharedApplication].delegate;
}

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    return _orientationMask;
}

- (void)setOrientationMask:(UIInterfaceOrientationMask)orientationMask {
    if (_orientationMask == orientationMask) {
        return;
    }
    _orientationMask = orientationMask;
    
    UIDeviceOrientation orient = UIDeviceOrientationUnknown;
    
    if (UIInterfaceOrientationMaskLandscape & orientationMask) {
        switch ([UIDevice currentDevice].orientation) {
            case UIDeviceOrientationLandscapeLeft:
                orient = UIDeviceOrientationLandscapeLeft;
                break;
            case UIDeviceOrientationLandscapeRight:
                orient = UIDeviceOrientationLandscapeRight;
                break;
            default:
                orient = UIDeviceOrientationLandscapeRight;
                break;
        }
    } else if (UIInterfaceOrientationMaskPortrait & orientationMask) {
        orient = UIDeviceOrientationPortrait;
    } else if (UIInterfaceOrientationMaskPortraitUpsideDown & orientationMask) {
        orient = UIDeviceOrientationPortraitUpsideDown;
    }
    
    [[UIDevice currentDevice] setValue:@(UIDeviceOrientationUnknown) forKey:@"orientation"];
    [[UIDevice currentDevice] setValue:@(orient) forKey:@"orientation"];
    [UIViewController attemptRotationToDeviceOrientation];
}

appdelegate.h


@interface AppDelegate : UIResponder <UIApplicationDelegate>

+ (AppDelegate *)sharedInstance;

@property (strong, nonatomic) UIWindow *window;

@property (nonatomic, assign) UIInterfaceOrientationMask orientationMask;

@end

调用:


[AppDelegate sharedInstance].orientationMask = UIInterfaceOrientationMaskPortrait;

 

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值