有没有办法为 iOS 播放器 (JWplayer) 设置 .skinActive(“#fefa01”) 属性

Is there a way to set the .skinActive(“#fefa01”) property for the iOS player (JWplayer)

有没有办法为 iOS 播放器(JWplayer / JWConfig class) ?

https://support.jwplayer.com/customer/portal/articles/1406968-using-jw-player-skins

skin.active 活跃的皮肤元素。这包括活动和突出显示的标签,以及已经过去的洗涤器时间。

skin.inactive 未激活的皮肤元素。这包括尚未结束的洗涤器时间。

skin.background 控制栏的背景部分。

// iOS 配置

// basic config
JWConfig *config = [JWConfig new];    
config.image = nil;
config.title = @" ";
config.controls = YES;  //default
config.repeat = NO;   //default
config.offlineMessage = NSLocalizedString(@"connection.title", nil);
//config.premiumSkin = JWPremiumSkinSeven;

//custom skin can be applied using:
config.cssSkin = @"http://urltomycustomcssfile.css";

或者是否可以通过使用 config.cssSkin 覆盖正确的 css 样式来解决这个问题?我试过了,但我不知道要覆盖哪些样式,以及这是否也有效。

.jw-skin-seven .jw-progress {
    background: #fefa01;
}

遗憾的是,目前无法在 iOS SDK 上执行此操作。 JWplayer 将为将来的版本创建功能请求。

https://support.jwplayer.com/customer/en/portal/questions/16101445-is-there-a-way-to-set-active-skin-elements-ios-sdk-?new=16101445