我正在使用这种流行的方法来自动调整 UITableViewCell 中的内容大小。它不工作。我得到的是:
我的应用程序是一个通用应用程序,我正在使用带有情节提要的 iOS 5。这是我的 .h 文件代码:
@interface SecondMasterViewController : UITableViewController
对于这两种方法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *identifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
cell.textLabel.lineBreakMode = UILineBreakModeWordWrap;
cell.textLabel.numberOfLines = 0;
cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:17.0];
}
cell.textLabel.text = [self.mainCategories objectAtIndex:indexPath.row];
UIImage *myAwesomeCellImage;
myAwesomeCellImage = [UIImage imageNamed:
[NSString stringWithFormat:@"%@%@",
cell.textLabel.text,@".png"]];
cell.imageView.image = myAwesomeCellImage;
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellText = @"Go get some text for your cell.";
UIFont *cellFont = [UIFont fontWithName:@"Helvetica" size:17.0];
CGSize constraintSize = CGSizeMake(280.0f, MAXFLOAT);
CGSize labelSize = [cellText sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
return labelSize.height + 20;
}
我做错了什么?我尝试了不同的方法,但都不起作用。
提前致谢!