|
|
@@ -60,7 +60,7 @@ class LNVideoFeedDetailViewController: LNViewController {
|
|
|
nameLabel.text = detail.nickname
|
|
|
likeLabel.text = detail.likeCount == 0 ? .init(key: "A00301") : "\(detail.likeCount)"
|
|
|
commentLabel.text = detail.commentCount == 0 ? .init(key: "A00302") : "\(detail.commentCount)"
|
|
|
- likeIc.image = detail.liked ? .icLikeFilled : .icLikeEmpty
|
|
|
+ likeIc.image = detail.liked ? .icLikeFilled : .icLikeEmpty.withTintColor(.text_1, renderingMode: .alwaysOriginal)
|
|
|
contentLabel.text = detail.textContent
|
|
|
timeLabel.text = TimeInterval(detail.createdAt / 1_000).tencentIMTimeDesc
|
|
|
videoPlayer.loadVideo(video.url, coverUrl: video.videoCover)
|