Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I use touchesbegan in a table's cell without having to subclass a whole cell. Something like addTarget..... which is available for a UIButton?

(in vb.net this would be like AddHandler I think)

share|improve this question

3 Answers

up vote 1 down vote accepted

You must subclass UITableViewCell in order to have access to individual touches on a tableview cell.

share|improve this answer

You cant do it, you will have to subclass UITableView cell just like the post before me said, then you can add some view in the cells content view there which can delegate the touches to the tableviewcontroller or wherever they need to go...

share|improve this answer

@Jaco Relkin, you can implement the messages on the UITableViewDelegateProtocol, for example: the message tableView:didSelectRowAtIndexPath: documented here:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UITableViewDelegate/tableView:didSelectRowAtIndexPath:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.