ios viewcontroller强制横屏(二)

1.采用push/pop的方式让一个viewcontroller初始化就横屏显示,比较麻烦。

[mAppDelegate.rootNavigationController pushViewController:webVC animated:YES];

[mAppDelegate.rootNavigationController popViewControllerAnimated:YES];

2.这里采用present/dismiss方式,就可以直接让一个viewcontrller横屏显示。比较方便。

示例代码:

显示:

[self presentViewController:webVC animated:YES completion:^{

}];

关闭:

[self dismissViewControllerAnimated:YES completion:^{

}];

你可能感兴趣的:(ios viewcontroller强制横屏(二))