公司做的一款教育App中哆姻,有個BookReading模塊是孩子用來學習英語宣增,里面又有一個子模塊Listen用來播放句子,產品的需求是要求單詞跟隨著句子的播放而高亮矛缨,效果如下统舀;GitHubDemo地址下載,這種需求之前沒做過劳景,網上搜索的也沒有資料(有的也是歌詞的高亮),所以花費了點時間碉就,現在趁閑暇時間寫了個小小的demo盟广,和大家分享,整個代碼寫的比較基礎瓮钥,有相似需求的可以借鑒筋量,不懂的地方歡迎相互交流
整體思路
1、根據服務器提供的json數據格式碉熄,demo中即為lrc.json桨武,知道每個單詞都有讀的對應的開始時間,
其中我定義了一個
var wordRanges = [NSRange]()
锈津,用來存儲每個單詞的Range呀酸,用來匹配相應單詞的高亮。
let textStr: NSString = section!.text
self.wordRanges.removeAll() // 在下一次添加之前琼梆,得先刪除之前的
weak var weakSelf = self
textStr.enumerateSubstringsInRange(NSMakeRange(0, textStr.length), options: .ByWords) { (substring, substringRange, enclosingRange, bb) in
weakSelf!.wordRanges.append(substringRange)
}
2性誉、使用CADisplayLink添加到mainRunloop中,來實現不停的重繪UI工作茎杂,相比于定時器精確度更高
private func setupTimer() {
displayLink = CADisplayLink(target: self, selector: #selector(BookCollectionViewController.displayWord))
displayLink?.addToRunLoop(NSRunLoop.mainRunLoop(), forMode: NSDefaultRunLoopMode) // mode 為 NSRunLoopCommonModes
// 調用的頻率 默認為值1错览,代表60Hz,即每秒刷新60次煌往,調用每秒 displayWord() 60次倾哺,這里設置為10,代表6Hz
displayLink?.frameInterval = 10
}
核心代碼如下:
func displayWord() {
let cell = self.collectionView.visibleCells().first as! BookCollectionViewCell
let indexPath = collectionView.indexPathForCell(cell)
guard let page = model?.pages[(indexPath?.item)!] else {return}
guard let section = page.sections.first else {return}
var i = 0
while true {
let curTime = audioPlayer?.currentTime ?? 0 // 播放聲音的的時間,ms
guard (wordRanges.first != nil) else {break}
let word = section.words[i]
let curRange = wordRanges[i]
if Int(curTime * 1000) >= Int(word.cueStartMs) { // 拿當前播放的聲音時間與json每個單詞的開始讀取時間相比羞海,
attributeStr?.addAttributes([NSForegroundColorAttributeName: UIColor.whiteColor()], range: NSMakeRange(0, attributeStr!.length))
attributeStr?.addAttributes([NSForegroundColorAttributeName: UIColor.redColor()], range: curRange)
cell.content.attributedText = attributeStr
}
i += 1
if i >= wordRanges.count || i >= section.words.count {
break
}
}
}