ios - UITableViewAutomaticDimension -
I have a table view, which is the dynamic cells created by code in iOS 7 To ensure that the cell is displayed completely, I override this method in the method
heightForRowAtIndexPath override
ios8 that my cells only appear on each other , And all sizes 67.0003
I do not want to make an autolayout layout for cells, they are very complex and initiated Made from the same
Is there a way to fix the issue of height in iOS 8?
UTTVVActic Dematation is working only with autolayout. If you do not use autolayout, do not use something like this
self.tableView.rowHeight = UITableViewAutomaticDimension; If you can provide your controller code then it will be useful.
Comments
Post a Comment