我有一個ViewController中的UICollection視圖,它根本沒有響應didSelectItemAtIndexPath。Swift UICollectionView:didSelectItemAtIndexPath沒有響應
// super class
class ViewController: UIViewController, iCarouselDelegate, iCarouselDataSource, UICollectionViewDelegate, UICollectionViewDataSource {
@IBOutlet weak var collectionView: UICollectionView!
// delegate
override func viewDidLoad() {
super.viewDidLoad()
// collection view delegate and datasource
collectionView.delegate = self
collectionView.dataSource = self
// did select item
func collectionView(collectionView: UICollectionView!, didSelectItemAtIndexPath indexPath: NSIndexPath!) {
print(indexPath)
}
嘿,我想知道是否有在細胞中的任何按鈕。或者customCell的內容是什麼? –
當我發佈問題我沒有按鈕,只是圖像和標籤。 現在我已經回答了這個問題,我如何解決這個問題。 去檢查我的回答 –