setNBUpdate

The setNBUpdate function is used to configure the mini program update mode. For details see Mini program update mechanism.

Method signature

copy
func setNbUpdate(_ nbupdate: GRVNBUpdateMode)

Parameters

Parameter

Data Type

Default value

Required

Description

nbupdate

GRVStartupParams.nbupdate

default

Yes

This parameter is used to configure the mini program update mode .

Valid values are:

  • asyncForce : indicate the asyncforce update mode
  • syncForce : indicate the syncforce update mode
  • default: indicate the async update mode

If this parameter is not specified, the mini program update mode is async by default.

Sample

copy
let param = GRVStartupParams()
param.nbupdate = .asyncForce

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)