0

Webを検索してみましたが、まだ問題は解決していません。

alerview内にテーブルを表示していますが、テキスト(フィールドの説明用)は1つのセル内にラップされていません。コードは次のとおりです。

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;

そしてここにスクリーンショットがあります: ここに画像の説明を入力してください

そして、私のストーリーボードでは、テーブルビュー:説明フィールドの長さが本当に短く見えます! ここに画像の説明を入力してください

4

0 に答える 0