[_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]
时间: 2024-11-08 14:04:41