我正在使用Twitter结构,并使用'tweetsWithJSONArray'填充了一个表格视图。
我试图将showAction布尔值添加到我的tableview func cellForRowAtIndexPath方法中的tweet单元格中,如下所示:
let tweet = tweets[indexPath.row]
let cell = feedTableView.dequeueReusableCellWithIdentifier(tweetTableReuseIdentifier, forIndexPath: indexPath) as! TWTRTweetTableViewCell
cell.configureWithTweet(tweet)
self.feedTableView.allowsSelection = true
cell.tweetView.delegate = self
cell.tweetView.showActionButtons = true
但是我得到的错误是
TWTRTweetView dos not have a member named showActionButtons
。我对此有点困惑,因为面料文档上的示例如下所示:let tweetView = TWTRTweetView(tweet: newlyLoadedTweet)
tweetView.showActionButtons = true
self.addSubview(tweetView)
链接:
https://docs.fabric.io/ios/twitter/show-tweets.html
我知道我做的有些不同,但是我仍然不确定如何在我的情况下以正确的方式应用showActionBoolean。我的tableview有一个附加的细分控件,只有在选择了最后一个细分时,我才用tweetsWithJsonArray填充表格,这就是为什么我不能直接从文档中获取示例的原因。
最佳答案
我遇到了同样的问题,查看了SDK文档后,我发现将“ showTweetActions”设置为true可以代替
使用Fabric示例进行操作(它在“ newlyLoadedTweet”上给了我一个错误)
//swift
showTweetActions = true
希望这可以帮助;)