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

false

Yes

Controls whether to show the loading view on the page.

Valid values are:

  • true: Show the loading view.
  • false: Hide the loading view.

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

true

IMG_0084.PNG

false

IMG_0085.PNG