我使用BMPlayer。 使用功能時:當在標籤中顯示測試時出錯
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
}
}
}
,但顯示錯誤:
請幫我
您是否閱讀錯誤信息? –