テーブルのセルに2つのテキストを追加しています。私がしているのは
UITableViewCell * cell = nil;
NSString * CellIdentifier = @ "Cell";
cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
restartIdentifier:CellIdentifier];[[UILabel alloc] initWithFrame:CGRectMake(80.0、0.0、220.0、10.0)];
mainLabel.tag = 1003;
mainLabel.text =@"テキスト1";
mainLabel.textAlignment = UITextAlignmentLeft;
mainLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight; [cell.contentView addSubview:mainLabel];
}
同じことを行って、secondLabelをセルに追加します。シミュレータに表示されているのは
ここで問題となるのは、2 UILabelの背景がセルの背景と同じではないことです(私のセルはテーブルビューでグループ化されています)
誰かがこの問題を解決する方法を知っていますか?
コメントはここで歓迎しますありがとう