系统自定义cell

2019-05-06  本文已影响0人  ljzza

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;

上一篇 下一篇

猜你喜欢

热点阅读