如何在iOS TwitterKit中显示转推和类似计数?

时间:2017-12-01 11:44:00

标签: ios twitter twitterkit

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

cell.tweetView.showActionButtons = true;

这允许我们显示收藏和分享的动作按钮。但是我希望在每条推文中显示转推/喜欢的数量。我怎样才能实现?

1 个答案:

答案 0 :(得分:0)

只需定期UITableViewCell的子类,并在其中使用TWTRTweetView。这基本上是TWTRTweetTableViewCell的作用,它有一个tweetView属性,它本质上是TWTRTweetView类型的IBOutlet,而是在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];
}

了解更多信息:check this SO post