setScreenOrientation
The setScreenOrientation function is used to configure the initial screen orientation of a mini program when it is first launched.
Method signature
copy
func setScreenOrientation(_ screenOrientation: GRVScreenOrientation)
Parameters
Parameter | Data Type | Default value | Required | Description |
screenOrientation | GRVStartupParams.ScreenOrientation |
| Yes | This parameter is used to configure the initial screen orientation of a mini program when it is first launched. Valid values:
If this parameter is not specified, the inital screen orientation is |
Sample
copy
let param = GRVStartupParams()
param.screenOrientation = .landscape
let viewController = try GRVAppContainerLaunch.sharedInstance().openApp(withApppId: appId, startupParams: param)
let navigationController = self.navigationController ?? UIApplication.shared.windows.first?.rootViewController as? UINavigationController
navigationController?.pushViewController(viewController, animated: true)
User experience
Value | Screenshot |
| |
|