标签:
[_tableView registerNib:[UINib nibWithNibName:@"cellTabell" bundle:nil] forCellReuseIdentifier:@"myCell"]; cellTabell *cell = [tableView dequeueReusableCellWithIdentifier:@"myCell"]; cell.selectionStyle = UITableViewCellSelectionStyleNone; UIView *onView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, cell.contentView.frame.size.width, 0.5)]; onView.backgroundColor = RGB(154, 154, 154); [cell.contentView addSubview:onView]
标签:
原文地址:http://my.oschina.net/jilin/blog/404581