``` c++ - (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { NSString *identifier=@"indentifier"; UITableViewCell *cell =(UITableViewCell *)([self.tableView dequeueReusableCellWithIdentifier:identifier]); return cell.frame.size.height; } ``` 你可以这样获取到 cell 的实例并返回高度。 也可以直接 return 150.0;指定高度。