所以我有一個按鈕,看起來像在收集觀察室廈門國際銀行鉛筆。集合視圖單元格按鈕不觸發動作
然後,我有這樣的代碼。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "groupsCollectionViewCellIdentifier", for: indexPath) as! GroupCollectionViewCell
//add action to the edit button
cell.editButton.tag = indexPath.row
cell.editButton.addTarget(self, action: #selector(GroupsCollectionViewController.editGroupAction), for: .touchUpInside)
return cell
}
//segue to edit group
func editGroupAction() {
performSegue(withIdentifier: "editGroupSegue", sender: self)
}
但每當我點擊編輯按鈕。什麼都沒有發生。我不知道缺少什麼。
我已經分配給小區課堂上,Segue公司也有一個標識符。 –
你是否嘗試斷點,然後檢查func是否被調用 –
所以在斷點中它甚至沒有調用函數。點擊按鈕什麼也不做。 –