我有一个collectionview单元格,上面有一个图像,下面有一个按钮。现在当我点击这个按钮时,我想加载一个tableviewCell
,其上有来自collectionview的图像。为实现这一目标,我最初这样做了。
func SellBtnTapped(_ sender: UIButton) {
let indexPath = collectionView?.indexPath(for: ((sender.superview?.superview) as! RecipeCollectionViewCell))
self.photoThumbnail.image = self.arrayOfURLImages[(indexPath?.row)!]
和photoThumbnail
的定义是这样的...... var photoThumbnail: UIImageView!
但这样做会导致崩溃告诉'Unexpectedly found nil while unwrapping an optional value'
所以我试过了..
let point = sender.convert(CGPoint.zero, to: self.collectionView)
let myIndexPath = self.collectionView.indexPathForItem(at: point)
self.photoThumbnail.image = self.arrayOfURLImages[(myIndexPath?.row)!]
但是,同样的Unexpectedly found nil....
崩溃正在发生。任何想法可能是什么问题..?
修改
这是cellForItemAtIndex...
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: identifier, for: indexPath as IndexPath) as! RecipeCollectionViewCell
cell.sellButton.tag = indexPath.item
cell.sellButton.addTarget(self,action: #selector(SellBtnTapped(_:)),for: .touchUpInside)
return cell
}
答案 0 :(得分:1)
这是因为你总是获得nil
你的indexPath。
另一种方法是
collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath
方法中的
设置单元格按钮的标记,如
cell.myButton.tag = indexPath.item
在SellBtnTapped
方法中,使用以下代码获取indexPath
let indexPath = NSIndexPath(item: sender.tag, section: 0) // set section as you want
let cell = collectionView.cellForItem(at: indexPath as NSIndexPath) as! RecipeCollectionViewCell
现在,通过使用单元格,您可以获取其上的图像对象,或使用self.arrayOfURLImages
来获取正确的图像。并做更多的事情。
答案 1 :(得分:1)
我更喜欢完全避开标签。我刚才写了这篇文章,但仍觉得它很有用。
extension UIView {
var superCollectionViewCell: UICollectionViewCell? {
if let cell = self as? UICollectionViewCell {
return cell
} else {
return superview?.superCollectionViewCell
}
}
var superCollectionView: UICollectionView? {
if let collectionView = self as? UICollectionView {
return collectionView
} else {
return superview?.superCollectionView
}
}
var indexPathOfSuperCollectionViewCell: IndexPath? {
guard let cell = superCollectionViewCell, let collectionView = superCollectionView else { return nil }
return collectionView.indexPath(for: cell)
}
}
这会将您的行动变为
func SellBtnTapped(_ sender: UIButton) {
guard let indexPath = sender.indexPathOfSuperCollectionViewCell else {
print("button has no index path")
return
}
self.photoThumbnail.image = self.arrayOfURLImages[indexPath.row]
}