UITableViewCell
ストーリーボードで割り当てた高さに自分の高さを設定したいと思います。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
return cell.frame.size.height;
}
このコードを使用すると、アプリがクラッシュします。