Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change cell height by the content of the textView inside the cell

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 the Text View. This is what I tried:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell: TableViewCell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath:indexPath) as! TableViewCell
        cell.bounds.size.height = cell.textView.bounds.size.height

        return cell
    }
like image 448
Eliko Avatar asked Sep 18 '15 12:09

Eliko


1 Answers

Bound Your textview with cell from all sides using marginal constraints.(Leading, Trailing, Top and Bottom constraints)

enter image description here

  • Disable textView Scrolling

In viewDidLoad() add the following.

tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension

This will make your cell size according to your textview content size.

Have a look at result :

enter image description here

You don't need to write heightForRowAtIndexPath.

like image 95
Irfan Avatar answered Oct 20 '22 21:10

Irfan