I’ve Created a textField to all the cells in the table view.
self.field = [[UITextField alloc]initWithFrame:CGRectMake(20, 44, 222, 31)];
self.field.delegate = self;
[cell.contentView addSubview:self.field];
So All the rows got a textfield. But I want to Access them individually. One of my seniors asked me to add them to an array and use them and left me this one line code
[self.array addObject:self.field];
So what’s next? how should I use them?
UITextField *fieldOne = [arrayName objectAtIndex:locationOfTheTextField];