在twitterKit中,有一个tweetView
用于显示来自tweet模型对象的Tweet
,但是在tweetView中没有用于显示转推和喜欢计数的字段。
cell.tweetView.showActionButtons = true;
这允许我们显示收藏和分享的动作按钮。但是我希望在每条推文中显示转推/喜欢的数量。我怎样才能实现?
答案 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