我制作了自己的UITableViewController,我试图让我的TWTRTweetTableViewCell对象检测链接。 我有一个TWTRTweet对象数组,我用它来生成我的表视图单元格。这很有效但单元格无法检测URL链接。
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
}
我甚至尝试将链接颜色设置为红色无效。
TWTRTweetView.appearance().linkTextColor = UIColor.redColor()
答案 0 :(得分:0)
在表格视图单元格中使用UITextview并在storyboard中设置textview属性,如下所示: - editable:No,selectable:yes,Detection:选择此部分下的所有属性..
答案 1 :(得分:0)
错误是由于我设置" include_entities"参数为false。
修复是在我的URLRequestWithMethod请求中将其设置为true。