将UIView添加到单元格的子视图UITableViewController中

即时将2个文本添加到表格的单元格中。 我正在做的是

UITableViewCell * cell = nil;

NSString * CellIdentifier = @“Cell”;

cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];

if(cell == nil){

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];

[[UILabel alloc] initWithFrame:CGRectMake(80.0,0.0,220.0,10.0)];

mainLabel.tag = 1003;

mainLabel.text = @“Text 1”;

mainLabel.textAlignment = UITextAlignmentLeft;

mainLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight; [cell.contentView addSubview:mainLabel];

}

我做同样的事情来添加secondLabel到单元格。 在模拟器上显示的是什么 在这里输入图像描述

现在问题是2 UILabel的背景与单元格的背景不同(我的单元格在表格视图中分组)

有谁知道如何解决这个问题。

任何意见都欢迎在这里谢谢


如果我已经很好地理解了这个问题,则需要删除 UILabel背景,因为您想显示UITableViewCell背景。 所以我认为你只需要这样做:

 mainLabel.backgroundColor = [UIColor clearColor];

像上面的答案一样,您应该为这两个视图设置相同的颜色。

cell.backgroundColor = [UIColor clearColor];

或者您可以设置您设置的视图的颜色。

链接地址: http://www.djcxy.com/p/60499.html

上一篇: adding UIView into subView of cell, UITableViewController

下一篇: The first UITableViewCell's accessary arrow is not showing