我使用自动布局和UITableViewAutomaticDimension的自定义单元格。我需要知道UITableView的最终内容大小是什么(如果它会比某些浮动更大)。
tableView.contentSize根据估计的行大小乘以行数给出数字。
for(int i = 0; i< [self.items count]; i++){
CGRect rect = [self.tableview rectForRowAtIndexPath:[NSIndexPath indexPathForItem:i inSection:0]];
NSLog(@"%f",rect.size.height);
}
2014-12-07 18:42:18.036 App [42830:4312574] 48.500000 2014-12-07 18:42:18.039 App [42830:4312574] 48.500000