所有
如何从UITableView Cell Row中删除单独的行。 我尝试了但是仍然在UITableViewCell Row中绘制了一个单独的行。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSeparatorStyleNone;
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
cell.backgroundColor = [UIColor colorWithRed:217.0/255.0 green:235.0/255.0 blue:244.0/255.0 alpha:1.0];
cell.textLabel.text = LOREM;
[cell.textLabel setFont:[UIFont fontWithName:@"GillSans" size:12.0]];
cell.textLabel.numberOfLines = 0;
return cell;
}