前提・実現したいこと
カスタムセル内にButtonを配置し、そのButtonをタップしたらセルが削除される実装を実現したいのですが、Buttonタップでセルが削除されません。
swiftの勉強を始めたばかりで、collectionViewを使った実装を色々試しています。
無駄な部分があるかと思いますので、シンプルな実装方法のをお教えいただければと思います。
該当のソースコード
viewControllerクラス
swift
1 2import UIKit 3 4class viewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource { 5 6 let strArray = ["あああ","いいい","ううう","えええ"] 7 8 @IBOutlet weak var collectionView: UICollectionView! 9 10 override func viewDidLoad() { 11 super.viewDidLoad() 12 let nib = UINib(nibName: "CustumCell", bundle: nil) 13 collectionView.register(nib, forCellWithReuseIdentifier: "cell") 14 } 15 16 17 18 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 19 return strArray.count 20 } 21 22 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 23 let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath)as! CustumCell 24 25 cell.button.tag = indexPath.row 26 cell.button.addTarget(self, action: #selector(ViewContoller.buttonEvent(sender: )), for: .touchUpInside) 27 28 cell.label.text = strArray[indexPath.row] 29 30 31 return cell 32 33 } 34 35 func buttonEvent(index: Int) { 36 self?.strArray.remove(at: index) 37 collectionView.deleteItems(at: [indexPath]) 38 collectionView.reloadData() 39 40 } 41} 42
CustumCellクラス
swift
1import UIKit 2 3class CustumCell: UICollectionViewCell { 4 5 @IBOutlet var label: UILabel! 6 @IBOutlet var tapRemovebtn: UIButton! 7 8 9 override func awakeFromNib() { 10 super.awakeFromNib() 11 // Initialization code 12 } 13 14 @IBAction func removeBtnAction(_ sender: Any) { 15 print("タップ") 16 } 17 18}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。