我尝试过在网上搜索,但问题仍未解决。
我在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;
以下是截图:
在我的故事板中的tableview:描述字段长度看起来很短!