2016-12-06 74 views
1

我想用一个看起来像应用商店的设计制作应用程序,所以我跟着让我们构建应用程序教程,了解如何构建它,结果非常好,当我在我的设备上测试它时,似乎当我快速滚动收藏查看第一行中的数据发生在最后一行并且再次快速滚动时,应该在最后一行中找到的数据它在第一行,当我在该行左右滚动时,单元格离开屏幕时,它重新更新到正确的数据,但当快速再次上下滚动时,第一行和最后一行之间的数据变得疯狂。 我在code.i花了5天的情况下,试图解决这个问题,但没有运气,我尝试了很多的解决方案,如重置它的细胞中的数据为零之前,重置它和其他许多你会发现它的代码,但没有运气,我真的很感激任何帮助,您可以提供,感谢快速滚动collectionview查看最后一行的第一行数据dublicate

*更新 后@Joe丹尼尔斯回答所有的数据是主食和除图像做工精细仍然发疯时快速滚动但它停止后7/8秒停止滚动到右侧图像

第一类包含垂直collectionview 我提出的单元的宽度等于视图的宽度,我试过cell.tag ==索引path.row解决方案,但它没有工作包含水平

 class HomePageVC: UIViewController , UICollectionViewDataSource , UICollectionViewDelegate , UICollectionViewDelegateFlowLayout ,SWRevealViewControllerDelegate { 

override func viewDidLoad() { 
    super.viewDidLoad() 
    mainProductsRow.delegate = self 
    mainProductsRow.dataSource = self 
} 


    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 

      if let count = productCategory?.count { 
      return count + 1 
     } 
     return 0 

} 

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 

    if indexPath.row == 0 { 
     let cell = collectionView.dequeueReusableCell(withReuseIdentifier: LargeHomeCategoriesCell.identifier, for: indexPath) as! LargeHomeCategoriesCell 
     cell.categoriesHomePageVC = self 
     cell.catIndexPath = indexPath.row 
     cell.productCategories = productCategory 
     cell.seeMore.addTarget(self, action: #selector(self.seeMoreCat(_:)), for: UIControlEvents.touchUpInside) 
     return cell 
    } 
     let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "RowCell", for: indexPath) as! HomeCategoriesCell 

     cell.categoriesHomePageVC = self 
     cell.catIndexPath = indexPath.row 
    cell.seeMore.tag = (indexPath.row - 1) 
    cell.seeMore.addTarget(self, action: #selector(self.seeMore(_:)), for: UIControlEvents.touchUpInside) 
// cell.tag = indexPath.row - 1 
    cell.productCategory = nil 
    //if cell.tag == indexPath.row - 1{ 
     cell.productCategory = productCategory?[indexPath.row - 1 ] 

// } 
     return cell 


} 

**二等collectionview是在第一个collectionview单元** 在cell-for-item-At-index-Path我打印index-path.row时,它的视图加载它打印0,1,2,并没有打印当我滚动到集合视图的结尾最后一个索引“3”,同样的事情再次发生

class HomeCategoriesCell: UICollectionViewCell , UICollectionViewDataSource , UICollectionViewDelegateFlowLayout , UICollectionViewDelegate{ 




@IBOutlet weak var seeMore: UIButton! 
@IBOutlet weak var categorytitle: UILabel! 
@IBOutlet weak var productsCollectionView: UICollectionView! 

let favFuncsClass = FavItemsFunctionality() 
let onCartFuncsClass = OnCartFunctionality() 

var productCategory : ProductCategories? { 
    didSet { 
     if let categoryTitle = productCategory?.name { 
      categorytitle.text = categoryTitle 
     } 
    } 

    override func awakeFromNib() { 
    recivedNotification() 

    productsCollectionView.delegate = self 
    productsCollectionView.dataSource = self 
    productsCollectionView.backgroundColor = UIColor.clear 
} 

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 
    if let count = productCategory?.products?.count { 
     return count 
    } 
    return 0 
} 
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 
    print(indexPath.row) 
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "HProductCell", for: indexPath) as! HomeProductCell 
    cell.tag = indexPath.row 

    cell.productImage.image = #imageLiteral(resourceName: "PlaceHolder") 
    cell.productTitle.text = nil 
    cell.productPrice.text = nil 
    cell.discountLabel.text = nil 
    cell.preDiscountedPrice.text = nil 
    cell.favButton.setImage(UIImage(named:"Heart_icon"), for: UIControlState.normal) 
    cell.addToCart.setImage(UIImage(named:"cart"), for: UIControlState.normal) 
    cell.configCell(products: nil) 
    if cell.tag == indexPath.row { 
     cell.configCell(products: productCategory?.products?[indexPath.item]) 
    } 
    cell.catNum = indexPath.row 

    return cell 
} 
    // Thanks to Joe Daniels i added this code and my nightmare become way less scary :P 
     override func prepareForReuse() { 
    super.prepareForReuse() 
    productsCollectionView.reloadData() 
    } 

} 

产物的细胞 我尝试了准备,对于重用()和reseted所有数据为零,但仍然没有工作

class HomeProductCell: UICollectionViewCell { 

func configCell(products :productDetails?){ 
     if let title = products?.name { 
     self.productTitle.text = title 
    }else { self.productTitle.text = nil} 

    if let price = products?.price { 
     self.productPrice.text = "\(price)" 
    }else { self.productPrice.text = nil } 

    } 

    override func prepareForReuse() { 
    super.prepareForReuse() 
    self.productImage.image = #imageLiteral(resourceName: "PlaceHolder") 
    productTitle.text = nil 
    productPrice.text = nil 
    discountLabel.text = nil 
    preDiscountedPrice.text = nil 
    favButton.setImage(UIImage(named:"Heart_icon"), for: UIControlState.normal) 
    addToCart.setImage(UIImage(named:"cart"), for: UIControlState.normal) 

} 

我把案件的屏幕芽,你可以找到它 here

回答

0

我找到了完美的解决方案,为我工作了15天的痛苦xD后,我用这个库(https://github.com/rs/SDWebImage)作为魔术。

要使用它迅速把这个线在你的桥接报

#import <SDWebImage/UIImageView+WebCache.h> 

而在collectionViewCell我用这条线

self.productImage.sd_setImage(with: myUrl , placeholderImage: UIImage(named:"yourPlaceHolderImage") 
0

的内部collectionView无法知道它已关闭屏幕。做一个reload在prepareForReuse

+0

我想它和它的工作对字符串数据,如魔术,而是当它快速滚动它的图像错过和dublicate,并显示在错误的单元格,但它约8/9秒后改变为正确的形象,但毫无疑问,你救了我非常感谢你^ - ^。你有什么想法如何防止图像做这个毛刺? – killvak

相关问题