如何访问Introductory Overlay?

时间:2016-08-10 13:11:49

标签: ios chromecast google-cast

我想在iOS应用中使用appearance()方法自定义介绍性叠加层,但我无法在API中找到负责此叠加层的类。有谁知道如何获得介绍性叠加?

2 个答案:

答案 0 :(得分:1)

我们目前不会公开介绍性叠加UI类,因此您可以更改外观。我们已经与我们的工程团队提出了这个问题。

答案 1 :(得分:0)

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

具体为Introductory Overlay

GCKUIStyle *castStyle = [GCKUIStyle sharedInstance];

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

[castStyle applyStyle];