I have a Table View called todoTableView with cells that created by the user. Each cell has Text View. I want to change the height of the cell by the content of
todoTableView
You should also implement heightForRowAtIndexPath:
heightForRowAtIndexPath
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { return // Calculate your custom row height here. }