1
Hello, I have a project that has a tableview with custom cells, up to Swift 1.1 the method tableView.rowHeight = UITableViewAutomaticDimension
in the viewDidLoad
and the number of lines in 0, were already enough for my cells to adapt to the content of characters contained in them. But after Swift 1.2 they don’t fit in anymore, someone could shed some light on that?
Obg Otávio, deu certo inserindo somenta a linha... func tableView(tableView: UITableView!, estimatedHeightForRowAtIndexPath indexPath: NSIndexPath!) -> CGFloat {
 return UITableViewAutomaticDimension
}
– JdsMedeirosBR