Hello,
In the previous version that method return a correct size.
With the last version 2.0.1 of TwitterKit the method is returning more height value that necessary
My code:
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat{
let tweet = tweets[indexPath.row]
return TWTRTweetTableViewCell.heightForTweet(tweet, style: .Regular, width: CGRectGetWidth(self.timeLine.bounds), showingActions: true)
}