我正在将我的应用程序更新到iOS 7,终于得到了它,但是有一件事我找不到解决方案。

在Xcode 4中,我使用了以下方法:

#define FONT_SIZE 14.0f
#define CELL_CONTENT_WIDTH 280.0f
#define CELL_CONTENT_MARGIN 10.0f


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath; {
    NSString *text = [textA objectAtIndex:[indexPath row]];

    CGSize constraint = CGSizeMake(CELL_CONTENT_WIDTH - (CELL_CONTENT_MARGIN * 2), 20000.0f);

    CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:FONT_SIZE] constrainedToSize:constraint lineBreakMode:NSLineBreakByWordWrapping];

    CGFloat height = MAX(size.height, 28.0f);

    return height + (CELL_CONTENT_MARGIN * 2);
}

但是在iOS 7中使用它时会出现错误消息:



我不知道如何将较早的版本转换为这种新方法,如果有人可以帮助我,那将是很好的。提前致谢。

最佳答案

在iOS7中不推荐使用 sizeWithFont 方法。您应该改为使用 boundingRectWithSize 。如果您还需要支持以前的iOS版本,则可以使用以下代码:

CGSize size = CGSizeZero;

if ([label.text respondsToSelector: @selector(boundingRectWithSize:options:attributes:context:)] == YES) {
    size = [label.text boundingRectWithSize: constrainedSize options: NSStringDrawingUsesLineFragmentOrigin
                                 attributes: @{ NSFontAttributeName: label.font } context: nil].size;
} else {
    size = [label.text sizeWithFont: label.font constrainedToSize: constrainedSize lineBreakMode: UILineBreakModeWordWrap];
}

关于uitableview - sizeWithFont :constrainedToSize:lineBreakMode: deprecated in iOS7,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18834275/

10-08 22:43