首页 > 代码库 > UITableView中防止cell内容拖动后重叠
UITableView中防止cell内容拖动后重叠
由于cell是高效复用的,每当拖动后,在cell.contentView,这些个view就会重叠,网上找了些方法,结合自己的代码,记录下来。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { //这里的reuse,是cell的Identifier UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"reuse" forIndexPath:indexPath];; if (!cell) { //在 cell中增加需要的内容 cell add things } else { //移除原来的子视图 while ([cell.contentView.subviews lastObject] != nil) { [(UIView*)[cell.contentView.subviews lastObject] removeFromSuperview];} } //在 cell中增加需要的内容 cell add things return cell; }
UITableView中防止cell内容拖动后重叠
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。