如何在iOS TwitterKit中显示转推和类似计数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在iOS TwitterKit中显示转推和类似计数?相关的知识,希望对你有一定的参考价值。
在twitterKit中,有一个tweetView
用于显示来自tweet模型对象的Tweet
,但是在tweetView中没有用于显示转推和喜欢计数的字段。
cell.tweetView.showActionButtons = true;
这允许我们显示收藏和分享的动作按钮。但是我希望在每条推文中显示转推/喜欢的数量。我怎样才能实现?
答案
只需将常规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
以上是关于如何在iOS TwitterKit中显示转推和类似计数?的主要内容,如果未能解决你的问题,请参考以下文章