• Jan
  • Feb
  • Mar
  • Apr
  • May
  • Jun
  • Jul
  • Aug
  • Sep
  • Oct
  • Nov
  • Dec
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
  • 27
  • 28
  • 29
  • 30
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

UITableVIewCell의 버튼 트리거 다루기

image

먼저 tableview xib에서 버튼을 @IBOutlet 연결 해 준다.

해당 tableview가 있는 VC 파일로 가서,
cellForRowAt 함수 내부에서 버튼에 태그를 달아준다.

cell.moreButton.tag = indexPath.row

버튼에 addTarget 함수로 트리거를 연결해준다.

cell.moreButton.addTarget(self, action: #selector(pushToBeerAllViewController), for: .touchUpInside)

그리고 @objc 함수도 만들어준다!

    @objc func pushToBeerAllViewController(sender: UIButton) {
        
        let beerAllStoryboard = UIStoryboard(name: Const.Storyboard.Name.beerAll, bundle: nil)
        guard let beerAllViewController = beerAllStoryboard.instantiateViewController(withIdentifier: Const.ViewController.Identifier.beerAll) as? BeerAllViewController else {
            return
        }
        
        self.navigationController?.pushViewController(beerAllViewController, animated: true)
    }

해당 함수 내에서 button에 달아준 tag로 분기처리를 해줄 수도 있다.

if sender.tag == 0 {
    print("스타일")
}