3
我用魔杖將我的UITableViewCell
的高度設置爲我在故事板中指定的高度。獲取UITableViewCell的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
return cell.frame.size.height;
}
使用此代碼,應用程序崩潰。
只有使用[tag:xcode]標籤才能瞭解關於IDE本身的問題。謝謝! – Undo