0

我正在开发 iOS App,我希望文本标签分两行。我找到了以下代码,但它似乎不起作用。关于我做错了什么的任何想法?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

        [[cell textLabel] setNumberOfLines:2];

        cell.textLabel.lineBreakMode = NSLineBreakByWordWrapping;
        cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:10.0];

        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }
    //Configure cell
}
4

2 回答 2

0

我已经测试过了,这工作正常..

cell.textLabel.numberOfLines=2
于 2013-11-20T05:41:13.673 回答
0

尝试这个

 [[cell textLabel] setNumberOfLines:0];
于 2013-09-16T21:25:11.093 回答