setTitleColor

The setTitleColor function is used to specify the text color of the page title.

Method signature

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

Parameters

The following parameters specify the text color of page title.

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.setTitleColor(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

(255,0,0,255)

image.png