这是我的代码,非常示例。
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
self.backgroundColor = [UIColor clearColor];
_userView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 40)];
_userView.backgroundColor = [UIColor grayColor];
[self addSubview:_userView];
_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 40, 320, 420) style:UITableViewStyleGrouped];
_tableView.backgroundColor = [UIColor whiteColor];
_tableView.delegate = self;
_tableView.dataSource = self;
[self addSubview:_tableView];
// _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
}
return self;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView
{
return 3;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"aaa"];
if (!cell.backgroundView) {
NSLog(@"wrong");
}
return cell;
}
我的表是分组的,Apple 的文档说: cell.background : // UITableViewStylePlain 中的单元格默认为 nil,UITableViewStyleGrouped 的默认值为非 nil。'backgroundView' 将被添加为所有其他视图后面的子视图。
但我的 cell.backgroundView = nil。
任何人都可以帮助,谢谢。