以下のtapPickView関数で該当するtableViewCellのcell番号[indexPath.row]を取得する方法が知りたいです。tableViewCellの上にtopViewが乗っており、その上にpickViewが乗っています。pickViewをtapするとtapPickView関数が起動する形になっています。
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("QuestionAndAnswerReuseIdentifier", forIndexPath: indexPath) as! QuestionAndAnswerTableViewCell
cell.topView.pickView.userInteractionEnabled = true
var tap = UITapGestureRecognizer(target: self, action: "tapPickView")
cell.topView.pickView.addGestureRecognizer(tap)
return cell
}
func tapPickView(){
answerQuestionView = AnswerQuestionView()
answerQuestionView.questionID = Array[/*ここにcell番号を入れたい*/]
self.view.addSubview(answerQuestionView)
}