ScrollView重复加载导致糊掉

2016-11-30  本文已影响21人  静花寒
730E9461-D574-4088-8B7C-220E233E6496.png

在代码中初始化的时候,将subview全部清除就可以了
代码如下:

case 3:{
            HomeHotCategoryViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:hotCategoryIdentifier forIndexPath:indexPath];
            
            [(HomeHotCategoryViewCell *)cell setDelegate:self];
            [cell.productListScrollView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
            productSpecialListModel *model = productSpecialListArray[indexPath.row];
            [(HomeHotCategoryViewCell *)cell setProductDataModel:model];
            return cell;
            break;
        }
上一篇 下一篇

猜你喜欢

热点阅读