iOS 在contentview 添加 控件 和在self添加

2017-09-25  本文已影响4人  阶梯
[cell addSubview:]  

or

[cell.contentView addSubview:] 

当我调用这个方法的时候,
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

区别在于进行cell编辑时,比如cell内容向左移或者右移时,
第一种方式子视图不会移动,
第二可以,所以这种情况一般使用第二种方式。

还有在设置backgroundColor/backgroundView时,使用cell设置时左移或者右移颜色是不会变的,而用cell.contentCell设置时,移动后的空白会显示cell的默认颜色,这种情况视实际情况选择。

其实这两种方式在大多数情况是一样,不用纠结。

上一篇下一篇

猜你喜欢

热点阅读