I have a UITableViewController which creates dynamically re-sizeable cells. The cell changes the size of the cell depending on the text content and the font size. (A tip found here.)
It uses a call to the following method which is deprecated:
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
I have not been able to figure out which method to use instead and keeping my functionality. There is no reference in the Apple documentation.
How could I solve this?