Skip to content

Instantly share code, notes, and snippets.

@bimawa
Created October 28, 2014 05:53
Show Gist options
  • Save bimawa/0facdfdef842371b75ac to your computer and use it in GitHub Desktop.
Save bimawa/0facdfdef842371b75ac to your computer and use it in GitHub Desktop.
Property for ios8 UITableView cellSize wuth aoutolayouts.
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0"))
{
[self.tableView setRowHeight:UITableViewAutomaticDimension];
[self.tableView setEstimatedRowHeight:50];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment