React Native 之 iOS 设置某个界面强制横屏

最近在做一个React Native项目遇到一个需求:项目中有一个页面需要横屏显示(视频页面)其他页面都是竖屏显示。

目前根据需求整理出三种解决方案:

一、使用presentViewController方式进行页面切换

1、首先设置项目支持的屏幕方向


项目支持方向

设置方式:选择工程--->>>TARGETS--->>>General--->>>Deployment Info--->>>Device Orientation--->>>根据项目需要勾选相应的屏幕方法

2、自定义BaseNavigationViewController继承UINavigationController,在BaseNavigationViewController中重写方法:

#import "BaseNavigationViewController.h"

@interface BaseNavigationViewController ()

@end

@implementation BaseNavigationViewController

- (void)viewDidLoad

{

    [super viewDidLoad];

    // Do any additional setup after loading the view.

}

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

// 1.设置是否支持旋转

- (BOOL)shouldAutorotate

{

    return self.topViewController.shouldAutorotate;

}

// 2.设置支持旋转方向

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

{

    return self.topViewController.supportedInterfaceOrientations;

}

3、在AppDelegate中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // Override point for customization after application launch.

    self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];

    [self.window makeKeyAndVisible];

    MainViewController *vc  =[[MainViewController alloc]init];

    BaseNavigationViewController *nav = [[BaseNavigationViewController alloc]initWithRootViewController:vc];

    [self.window setRootViewController:nav];

    return YES;

}

4、在MainViewController

//支持旋转

-(BOOL)shouldAutorotate

{

    return YES;

}

//支持的方向 因为界面MainViewController我们只需要支持竖屏

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

 {

    return UIInterfaceOrientationMaskPortrait;

}

-(void)presentAction

{

WDGRoomViewController *vc = [[WDGRoomViewController alloc]init];

 [self presentViewController:vc animated:YES completion:NULL];

}

5、在WDGRoomViewController中重写选择方法和支持的方向

//支持旋转

-(BOOL)shouldAutorotate

{

    return YES;

}

//

//支持的方向

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

 {

    return UIInterfaceOrientationMaskLandscapeRight;

}

//一开始的方向  很重要

-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation

{

    return UIInterfaceOrientationLandscapeRight;

}

二、使用pushViewController方式进行页面切换①

1、首先设置项目支持的屏幕方向


项目支持方向

设置方式:选择工程--->>>TARGETS--->>>General--->>>Deployment Info--->>>Device Orientation--->>>根据项目需要勾选相应的屏幕方法

2、自定义BaseNavigationViewController继承UINavigationController,在BaseNavigationViewController中重写方法:

#import "BaseNavigationViewController.h"

@interface BaseNavigationViewController ()

@end

@implementation BaseNavigationViewController

- (void)viewDidLoad

{

    [super viewDidLoad];

    // Do any additional setup after loading the view.

}

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

// 1.设置是否支持旋转

- (BOOL)shouldAutorotate

{

    return self.topViewController.shouldAutorotate;

}

// 2.设置支持旋转方向

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

{

    return self.topViewController.supportedInterfaceOrientations;

}

3、在MainViewController

//支持旋转

-(BOOL)shouldAutorotate

{

    return NO;

}

//支持的方向 因为界面MainViewController我们只需要支持竖屏

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

 {

    return UIInterfaceOrientationMaskPortrait;

}

4、在WDGRoomViewController中重写选择方法和支持的方向

//支持旋转

-(BOOL)shouldAutorotate

{

    return YES;

}

//支持的方向

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

 {

    return UIInterfaceOrientationMaskLandscapeRight;

}

5.界面WDGRoomViewController设置物理设备方向:

//setOrientation 在3.0以后变为私有方法了,不能直接去调用此方法,否则后果就是被打回。

在网上搜了很多很久,都是这种调用私有方法的:

//强制横屏,会被打回。

if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {

[[UIDevice currentDevice] performSelector:@selector(setOrientation:)

withObject:(id)UIInterfaceOrientationLandscapeRight];

}

不能直接调用,但是可以间接的去调用,下面的方法就是利用 KVO机制去间接调用,多次验证不会被打回,放心!

-(void)viewWillAppear:(BOOL)animated

{

    NSNumber *orientationUnknown = [NSNumber numberWithInt:UIInterfaceOrientationUnknown];

    [[UIDevice currentDevice] setValue:orientationUnknown forKey:@"orientation"];


    NSNumber *orientationTarget = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeRight];

    [[UIDevice currentDevice] setValue:orientationTarget forKey:@"orientation"];

}

三、使用pushViewController方式进行页面切换②

1、iOS中可以直接调用某个对象的消息方式有两种

①performSelector:withObject;

②NSInvocation

//使用这里的代码也是oK的。 这里利用 NSInvocation 调用 对象的消息

- (void) viewWillAppear:(BOOL)animated

{

    [super viewWillAppear:animated];

    if([[UIDevice currentDevice]respondsToSelector:@selector(setOrientation:)]) {

        SEL selector = NSSelectorFromString(@"setOrientation:");

        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];

        [invocation setSelector:selector];

        [invocation setTarget:[UIDevice currentDevice]];

        int val = UIInterfaceOrientationLandscapeRight;//横屏

        [invocation setArgument:&val atIndex:2];

        [invocation invoke];

    }

}

注意:

第一个参数需要接收一个指针,也就是传递值的时候需要传递地址

第二个参数:需要给指定方法的第几个参数传值

注意:设置参数的索引时不能从0开始,因为0已经被self(target)占用,1已经被_cmd(selector)占用在NSInvocation的官方文档中已经说明

(_cmd在Objective-C的方法中表示当前方法的selector,正如同self表示当前方法调用的对象实例。)

[invocation setArgument:&val atIndex:2];

调用NSInvocation对象的invoke方法*只要调用invocation的invoke方法,就代表需要执行NSInvocation对象中制定对象的指定方法,并且传递指定的参数

[invocation invoke];

关于NSInvocation的使用可以参照以下:

http://my.oschina.net/u/2340880/blog/398552?fromerr=sAJ1ndvB

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,682评论 6 507
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,277评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 165,083评论 0 355
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,763评论 1 295
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,785评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,624评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,358评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,261评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,722评论 1 315
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,900评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,030评论 1 350
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,737评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,360评论 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,941评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,057评论 1 270
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,237评论 3 371
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,976评论 2 355

推荐阅读更多精彩内容