If I have multiple UITextFields and use Interface Builder to call an IBAction update() for Editing Did End, is there an easy way to determine what text field was just edited from within update()?
Other creative ways I'm considering:
subclass UITextField
create a unique IBAction for each text field
override textViewShouldEndEditing
but which is best? or is there a magic convenience method I missed?
Other creative ways I'm considering:
subclass UITextField
create a unique IBAction for each text field
override textViewShouldEndEditing
but which is best? or is there a magic convenience method I missed?