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

false

Yes

Controls whether to show the loading view on the title bar.

Valid values:

  • true: show the loading view on the title bar.
  • false: hide the loading view on the title bar.

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

true

IMG_0086.PNG

false

IMG_0087.PNG