如何在 iOS TwitterKit 中显示转推和点赞数?
How to show retweets and like counts in iOS TwitterKit?
在 twitterKit 中,有一个 tweetView
用于显示来自 tweet 模型 object 的 Tweet
,但是在 tweetView 中没有用于显示转推和喜欢计数的字段。
cell.tweetView.showActionButtons = true;
这让我们可以显示收藏和分享的操作按钮。但我想在每条推文中显示 retweet/likes 计数。我怎样才能实现?
只需继承常规 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];
}
更多信息:
在 twitterKit 中,有一个 tweetView
用于显示来自 tweet 模型 object 的 Tweet
,但是在 tweetView 中没有用于显示转推和喜欢计数的字段。
cell.tweetView.showActionButtons = true;
这让我们可以显示收藏和分享的操作按钮。但我想在每条推文中显示 retweet/likes 计数。我怎样才能实现?
只需继承常规 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];
}
更多信息: