我已經讀了很多有關動態高度UITableViewCell
和我的生活我無法得到它的工作。動態高度的UITableViewCell與storybaord
我有一個動態單元格內的動態內容的uilabel。
我使用的是故事板,並有約束這樣:
我填充使用
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"labelCell";
detailTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[detailTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.dynamicLabel.text = sectionString;
return cell;
}
我不知道爲什麼一切,我已經嘗試已經失敗表。我想這可能是uiLabel上的連接?
我相信你仍然需要計算'heightforrowatindexpath'上每個單元的高度。 –
嘗試'UITableView'的'heightForRowAtIndexPath:'方法。如果您需要根據cellHeight更改'UILabel'的高度,請將'UILabel'的'Bottom space'添加到'container' – Akhilrajtr