1

在 twitterKit 中,有一个tweetView用于显示Tweet来自 tweet 模型对象的字段,但在 tweetView 中没有显示转发和喜欢计数的字段。

cell.tweetView.showActionButtons = true;

这使我们能够显示收藏和分享的操作按钮。但我想在每条推文中显示转推/点赞数。我怎样才能实现?

4

1 回答 1

0

只需子类化一个常规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 帖子

于 2017-12-27T06:10:57.973 回答