I'm trying to solve this problem for two days before finding the solution. Here it is.
======
Hi everyone,
I actually manage the height of my tableViewCell in iOS7 with the delegate method heightForRowAtIndexPath:
Now, in iOS8 I use the property tableView.rowHeight = UITableViewAutomaticDimension with autolayout and it works great and better than before.
The problem is that I need to remove the heightForRowAtIndexPath: method from my code, otherwise the property doesn't work (the height is set inside and take control on the property).
How can I do to remove this method in iOS8 only (perhaps with a compilation directive but I don't know which one) ?
I still need it for ios7.
try this one