showTitleLoading
The showTitleLoading function is used to specify whether to show the loading view on the title bar.
Method signature
copy
func showTitleLoading(_ showTitleLoading: Bool)
Parameters
Parameter | Data Type | Default | Required | Description |
showTitleLoading | Bool |
| Yes | Controls whether to show the loading view on the title bar. Valid values:
If this parameter is not specified, the loading view on the title bar is hidden by default. |
Sample
copy
let param = GRVStartupParams()
param.showTitleLoading = true
let viewController = try GRVAppContainerLaunch.sharedInstance().openApp(withUrl: url, startupParams: param)
let navigationController = self.navigationController ?? UIApplication.shared.windows.first?.rootViewController as? UINavigationController
navigationController?.pushViewController(viewController, animated: true)
User experience
Value | Screenshot |
| |
|