How do I identify which textField triggered textFieldDidEndEditing on dynamically created UITableCell containing 2 uiTextFields?
My issue is I don't know how to identify which field on the cell this actually is.
Use Tag to Identify.
lowRangeField.tag = 1;
highRangeField.tag = 2;
-(void) textFieldDidEndEditing:(UITextField*) textfield
{
if (textField.tag == 1) {
NSLog(@" clicked in lowRangeField");
} else if (textField.tag ==2) {
NSLog(@" clicked in highRangeField");
}
}