Tableview下拉重叠解决办法

来源:互联网 发布:淘宝如何设置宝贝预览 编辑:程序博客网 时间:2024/05/23 01:18
if (cell == nil) {        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];    }else{        for (UIView *subView in cell.contentView.subviews) {            [subView removeFromSuperview];        }    }

0 0