码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView中防止cell内容拖动后重叠

时间:2014-11-29 20:19:42      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   for   on   bs   代码   ad   ef   as   

由于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内容拖动后重叠

标签:ar   sp   for   on   bs   代码   ad   ef   as   

原文地址:http://my.oschina.net/u/2262643/blog/350343

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!