0

我正在尝试从数据库中获取评论列表。评论甚至可能长达 100 行。问题是我不能让它断线。我用过

comment.adjustFontSizeToFitWidth = NO;
comment.numberOfLines = 0;
comment.lineBreakMode = UILineBreakModeCharacterWrap

目前测试评论是:

呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜呜

但它在中间结束,没有“...”,也没有文字换行。如何解决这个问题?

顺便提一句。有很多这样的细胞。

4

3 回答 3

0
#define FONT_SIZE 11.0f
#define CELL_CONTENT_WIDTH 157.0f
#define CELL_CONTENT_MARGIN 10.0f

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
        NSString *text = YorCommentString;// or any String that u want.
        CGSize constraint = CGSizeMake(CELL_CONTENT_WIDTH - (CELL_CONTENT_MARGIN * 2), 20000.0f);
        CGSize size = [text sizeWithFont:[UIFont systemFontOfSize:FONT_SIZE] constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap];
        CGFloat height = MAX(size.height, 44.0f); // set as u want 
        return height + (CELL_CONTENT_MARGIN * 2); // set as u want

}

在上面的代码中不需要numberOfLines设置UILabel.

于 2013-03-12T11:37:09.080 回答
0

您将不得不实施有关详细信息,tableView:heightForRowAtIndexPath: 请参阅http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDelegate_Protocol/Reference/Reference.html

在该方法中,您必须根据标签显示文本所需的高度来计算每个单元格所需的高度。在 NSString 的 UIExtenstions 中,您将找到用于该计算的辅助方法。http://developer.apple.com/library/ios/#documentation/uikit/reference/NSString_UIKit_Additions/Reference/Reference.html

所以充满了关于如何使用的例子 - sizeWithFont:constrainedToSize:lineBreakMode:

然后,您可以在 cellForRowAtIndexPath 中布置单元格项目,您需要在其中sizeWithFont:...再次用于计算文本大小。或者,如果你想要一个简洁的解决方案,更好的子类UITableViewCell并覆盖它的layoutSubviews方法并在那里进行布局。

于 2013-03-12T11:56:45.167 回答
0

在您的 tableview 委托中执行此操作:

- (CGFloat)tableView:(UITableView *)tableView1 heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
        CGSize maximumSize = CGSizeMake(480.0,1000.0); // Put appropriate required height and width.
        NSString *dateString = [NSString stringWithFormat:@"%@",yourString];
        UIFont *dateFont = [UIFont fontWithName:@"Helvetica" size:14];
        CGSize dateStringSize = [dateString sizeWithFont:dateFont 
                                       constrainedToSize:maximumSize 
                                           lineBreakMode:UILineBreakModeWordWrap];
        return dateStringSize.height;
}

此代码将为您的单元格设置适当的高度。然后在你的 cellForRowAtIndexPath 函数中。保留此代码:

comment.adjustFontSizeToFitWidth = NO;
comment.numberOfLines = 0;
comment.lineBreakMode = UILineBreakModeCharacterWrap
于 2013-03-12T11:51:01.487 回答