I made a TableViewController and plan to use only TWTRTableViewCell in my table.
The code below works fine but the cells do not detect URL links.
How do I enable URL link detection?
It’s worth noting that cells generated by TWTRTimelineViewController have URL link detection enabled.
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
}