我是 iOS 编程的新手,我正在开发一个具有表格视图的应用程序。
表数据正在由 plist 文件加载。表格的一排会很长且不一致,因此我需要动态高度。
这是我到目前为止所拥有的:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *cellText = @"This is a very long peice of text to show up here and here";// this will eventually be data from a plist
UIFont *cellFont = [UIFont fontWithName:@"Helvetica-neuve" size:21.0];
CGSize constraintSize = CGSizeMake(280.0f, MAXFLOAT);
CGSize labelSize = [cellText sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
int buffer = 70;
return labelSize.height + buffer+100;
//return 65;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CustomTableCell";
static NSString *CellNib = @"DetailViewCell";
DetailViewCell *cell = (DetailViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:CellNib owner:self options:nil];
cell = (DetailViewCell *)[nib objectAtIndex:0];
cell.cellSubtitleLabel.lineBreakMode = UILineBreakModeWordWrap;
cell.cellSubtitleLabel.numberOfLines = 0;
cell.cellSubtitleLabel.font = [UIFont fontWithName:@"Helvetica-neuve" size:21.0];
}
cell.accessoryType = UITableViewCellAccessoryNone;
informations = [[NSArray alloc] initWithObjects:@"Title", @"Country", @"State", @"Population", @"Info", nil];
subtitles = [[NSArray alloc] initWithObjects:titleString, subtitleString, stateString, populationString, @"This is a very long peice of text to show up here and here", nil];
cell.cellTitleLabel.text = [informations objectAtIndex:indexPath.row];
cell.cellSubtitleLabel.text = [subtitles objectAtIndex:indexPath.row];
return (DetailViewCell *) cell;
}
我已经设法达到了高度还可以的程度。但是标签文本没有显示。我已经缩小了标签的高度。它是 23(在 Interface Builder 中设置)。如果我增加大小,它会弄乱其他单元格。我需要根据其内容更改标签的高度。
有人可以帮我解决这个问题,因为我已经花了两天的时间反复试验,但仍然没有成功。我也是一个菜鸟,所以详细解释一下;)
非常感谢
瑞安。