我怎样才能访问 Introductory Overlay?

How can I get access to Introductory Overlay?

我想使用 appearance() 方法在我的 iOS 应用程序中自定义介绍性叠加层,但我在 API 中找不到负责此叠加层的 class。有谁知道我怎样才能访问介绍性叠加层?

我们目前不公开介绍性叠加层 UI class 因此您可以更改外观。我们已向我们的工程团队提出此问题。

引入了 iOS 的 Cast SDK v3 GCKUIStyle。 这允许您自定义所有 Cast View 的外观,而无需引用任何视图。因为它包含几乎所有用于自定义的属性。

专门针对Introductory Overlay

GCKUIStyle *castStyle = [GCKUIStyle sharedInstance];

// customize Introductory Overlay
GCKUIStyleAttributesInstructions *instructionsCtrlStyle = [[castStyle castViews] instructions];
[instructionsCtrlStyle setBackgroundColor:[UIColor darkGrayColor]];
[instructionsCtrlStyle setButtonTextColor:[UIColor whiteColor]];

[castStyle applyStyle];