setDefaultTitle

The setDefaultTitle function is used to set the default title of the page. It is mainly used to display the title before the real, meaningful title text is received.

Method signature

copy
func setDefaultTitle(_ defaultTitle: String?)

Parameters

Parameter

Data Type

Default value

Required

Description

defaultTitle

String

""

Yes

This parameter is used to set the default title of the page.

When this parameter is configured in theapp.json or page.jsonfile, its value will be overwritten by the real, meaningful title text.

Sample

copy
let param = GRVStartupParams()
param.defaultTitle = "Mini Program"

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

"Mini Program"

IMG_0091.PNG

""

IMG_0092.PNG