setBackButtonColor

The setBackButtonColor function is used to specify the back button (e.g. image.png) color on the title bar.

Method signature

copy
func setBackButtonColor(red: Int, green: Int, blue: Int, alpha: Int)

Parameters

The following parameters specify the back button color on the title bar.

Parameter

Data Type

Default value

Required

Description

red

Int

0

Yes

Specifies the value of the red channel. The value range is between 0-255, including 0 and 255.

green

Int

0

Yes

Specifies the value of the green channel. The value range is between 0-255, including 0 and 255.

blue

Int

0

Yes

Specifies the value of the blue channel. The value range is between 0-255, including 0 and 255.

alpha

Int

255

Yes

Specifies the value of the alpha channel.

The value range is between 0-255, including 0 and 255.

Note: Currently, this parameter does not support passing in customized values. If a value other than 255 is set, it is still set to 255.

Sample

copy
let param = GRVStartupParams()
param.setBackButtonColor(255, green: 0, blue: 0, alpha: 255)

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

(0,255,0,255)

image.png