I'm sure this is a very noddy question, but I just can't get anything useful from the manuals.
I've a UITextField
embedded in a custom UITableViewCell
. If I use a delegate for the UITextView
- it just gives me the UITextView
.
If I link the event to the ParerentViewController
, it just gives me the ID of the UITextView
.
What I want to do is handle the event at the UITableViewCell
level. Can I get the events from this text control to feed to the parent, and handle them at the parent level.
I don't seem to even be able to find the parent cell from the UITextField
that the handler gives me. How do I find out which cell within the table the UITextField
is in when I'm trying to process the events.
I have to be missing something obvious, as I've done this in earlier (pre storyboard) versions, and I'm sure it wasn't this difficult.