showLoading
The showLoading function is used to specify whether to show the loading view on the page.
Method signature
copy
func showLoading(_ showLoading: Bool)
Parameters
Parameter | Data Type | Default value | Required | Description |
showLoading | Bool |
| Yes | Controls whether to show the loading view on the page. Valid values are:
If this parameter is not specified, the loading view is hidden by default. |
Sample
copy
let param = GRVStartupParams()
param.showLoading = true
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 |
| |
|