cell 썸네일형 리스트형 custom TableView Cell Button selector 커스텀으로 셀을 구성후 각각 셀마다 버튼을 눌러 그셀의 IndexPath를 전달&출력하는 방법 먼저 cell에 버튼셀렉터를 구현한다. [cell.selectButton addTarget:self action:@selector(selectButtonPush:) forControlEvents:UIControlEventTouchUpInside]; 그후 selectButtonPush메서드로 가서 다음의 코드를 입력한다. customCell * cell = (customCell *)[[sender superview] superview]; NSIndexPath *indexPath = [_tableView indexPathForCell:cell]; 그리고 로그를 출력 하면 내가 누른 셀의 로우값을 알아낼수 있고 그해.. 더보기 이전 1 다음