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 the |
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 |
| |
"" |