TWTRTweetTableViewCell 无法检测链接 - Fabric TwitterKit
TWTRTweetTableViewCell unable to detect links - Fabric TwitterKit
我制作了我自己的 UITableViewController,我正在尝试让我的 TWTRTweetTableViewCell 对象检测 links。
我有一组 TWTRTweet 对象,用于生成我的 table 视图单元格。这非常有效,但细胞无法检测到 URL links.
var statuses: [TWTRTweet]!
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let status = statuses[indexPath.row]
let tweetViewCell = tableView.dequeueReusableCellWithIdentifier("TwitterCell", forIndexPath: indexPath) as! TWTRTweetTableViewCell
tweetViewCell.configureWithTweet(status)
return tweetViewCell
}
我什至尝试将 link 颜色设置为红色,但无济于事。
TWTRTweetView.appearance().linkTextColor = UIColor.redColor()
在 table 视图单元格中使用 UITextview,并像这样在故事板中设置 textview 属性:- editable:否,selectable:是,检测:select 此部分下的所有属性..
错误是由于我将 "include_entities" 参数设置为 false。
修复方法是在我的 URLRequestWithMethod 请求中将其设置为 true。
我制作了我自己的 UITableViewController,我正在尝试让我的 TWTRTweetTableViewCell 对象检测 links。 我有一组 TWTRTweet 对象,用于生成我的 table 视图单元格。这非常有效,但细胞无法检测到 URL links.
var statuses: [TWTRTweet]!
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let status = statuses[indexPath.row]
let tweetViewCell = tableView.dequeueReusableCellWithIdentifier("TwitterCell", forIndexPath: indexPath) as! TWTRTweetTableViewCell
tweetViewCell.configureWithTweet(status)
return tweetViewCell
}
我什至尝试将 link 颜色设置为红色,但无济于事。
TWTRTweetView.appearance().linkTextColor = UIColor.redColor()
在 table 视图单元格中使用 UITextview,并像这样在故事板中设置 textview 属性:- editable:否,selectable:是,检测:select 此部分下的所有属性..
错误是由于我将 "include_entities" 参数设置为 false。
修复方法是在我的 URLRequestWithMethod 请求中将其设置为 true。