谢谢你回复我的帖子。这种行为对我来说也很奇怪,因为我之前有一个动态单元格高度表可以正常工作。以下是您要求的信息:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *currentCell = nil;
if([indexPath section] == 0 && [indexPath row]== 0)
{
currentCell = [issueDetailTable dequeueReusableCellWithIdentifier:@"DetailFieldCell"];
NSString *summaryString;
/* Here I call a method to figure out the value for summaryString */
/* Here I call a method to figure out the frame for summaryLabel */
summaryLabel = (UILabel *)[currentCell viewWithTag:1];
[summaryLabel setFrame:summaryRect];
[summaryLabel setText:summaryString];
}
return currentCell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
CGFloat height;
if([indexPath section] == 0 && [indexPath row]== 0)
{
NSString *summaryString;
/* Here I call the same method to figure out the value for summaryString */
/* Here I call the same method to figure out the frame for summaryLabel */
/* height = height of the summary label */
}
return height;
}
就情节提要而言,我的表格使用原型单元格;我的表格自动调整大小和剪辑子视图并清除图形上下文;我的单元格清除图形上下文。
而且,我打算发布我的表格视图的屏幕截图,但显然我的 Stackoverflow 声誉积分还不够!:|
再次感谢您帮助我解决这个问题。
最好的问候, 阿尼斯