私はBMPlayerを使用しています。 使用時のFUNC:ラベルでshow字幕用エラーラベル表示でテストを表示するとき
bmPlayerView.playTimeDidChange = { (currentTime: TimeInterval, totalTime: TimeInterval) in
// print("playTimeDidChange currentTime: \(currentTime) totalTime: \(totalTime)")
self.subtitleShow(currentTime: currentTime)
}
。
func subtitleShow(currentTime: TimeInterval){
let millisecond = Int(currentTime * 1000)
for i in (clip.subtitle?.enDialog)!{
if i.start <= millisecond && i.end >= millisecond {
subtitleLabel.text = i.text
return
}
}
}
しかし、表示エラー:
くれ
あなたはエラーメッセージをお読みになりますか? –