我已经尝试在网上搜索,但问题仍然没有解决。
我在 alerview 中显示了一个表格,并且文本(用于字段描述)没有包含在一个单元格中。这是代码:
static NSString *CellIdentifier = @"Cell1";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// No cell available - create one.
if(cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier];
}
UILabel *scopeLabel = (UILabel *)[cell viewWithTag:999];
UILabel *descriptionLabel = (UILabel *)[cell viewWithTag:1014];
NSDictionary *aScope = [_countryScopes objectAtIndex:indexPath.row];
scopeLabel.text = [aScope objectForKey:@"scope"];
scopeLabel.lineBreakMode = UILineBreakModeWordWrap;
scopeLabel.numberOfLines = 0;
descriptionLabel.text = [aScope objectForKey:@"description"];
descriptionLabel.lineBreakMode = UILineBreakModeWordWrap;
descriptionLabel.numberOfLines = 0;
cell.accessoryType = UITableViewCellAccessoryNone;
return cell;
这是屏幕截图:
在我的故事板中,表格视图:描述字段的长度看起来很短!