Skip to content

Instantly share code, notes, and snippets.

@jpotts18
Created October 29, 2014 22:49
Show Gist options
  • Save jpotts18/f8085f2b2fd2f43e51b4 to your computer and use it in GitHub Desktop.
Save jpotts18/f8085f2b2fd2f43e51b4 to your computer and use it in GitHub Desktop.
private func heightCalculation(indexPath:NSIndexPath) -> CGFloat{
let cell = tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell
layoutCell(cell)
let size = cell.contentView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize)
return size.height + 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment