2016-08-10 4 views

답변

1

현재 외관 오버레이 UI 클래스를 노출하지 않으므로 외관을 변경할 수 있습니다. 우리는 엔지니어링 팀과 함께이를 제기했습니다.

0

iOS 용 Cast SDK v3은 GCKUIStyle입니다. 이 기능을 사용하면 모든 캐스트 뷰의 모습을 사용자 정의 할 수 있습니다. 그것은 커스터마이즈를위한 모든 속성을 포함하고 있습니다. 구체적 Introductory Overlay

GCKUIStyle *castStyle = [GCKUIStyle sharedInstance]; 

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

[castStyle applyStyle]; 
들어

관련 문제