for (int i=0; i<count_size; i++) {
//UITextfield in UIview
CGRect myTextField = CGRectMake(8, 5, 60, 30);
UITextField *txtField = [[UITextField alloc] initWithFrame:myTextField];
txtField.tag = i;
...
}
- (void)textFieldDidEndEditing:(UITextField *)textField {
int index = textField.tag;
// Now save text using that index
NSLog(@"Dic: %@",textField.text);
}