在 twitterKit 中,有一个tweetView
用于显示Tweet
来自 tweet 模型对象的字段,但在 tweetView 中没有显示转发和喜欢计数的字段。
cell.tweetView.showActionButtons = true;
这使我们能够显示收藏和分享的操作按钮。但我想在每条推文中显示转推/点赞数。我怎样才能实现?
在 twitterKit 中,有一个tweetView
用于显示Tweet
来自 tweet 模型对象的字段,但在 tweetView 中没有显示转发和喜欢计数的字段。
cell.tweetView.showActionButtons = true;
这使我们能够显示收藏和分享的操作按钮。但我想在每条推文中显示转推/点赞数。我怎样才能实现?
只需子类化一个常规UITableViewCell
并使用TWTRTweetView
它的内部。这基本上是做什么TWTRTweetTableViewCell
的,它有一个 tweetView 属性,它本质上是一个 IBOutlet 类型TWTRTweetView
,并在 tableview 单元格中使用它。
将like and retweets
计数的自定义标签放在TWTRTweetView
.
- (void)configureCell:(TWTRTweet *)tweet{
self.customTweetView.showActionButtons = true;
[self.customTweetView configureWithTweet:tweet];
self.likesCount.text = [NSString stringWithFormat:@"%lld", tweet.likeCount];
self.retweetsCount.text = [NSString stringWithFormat:@"%lld", tweet.retweetCount];
}
有关更多信息:查看此 SO 帖子