There are many same questions on stackOverflow. But I can't resolve this problem.
How to becomeFirstResponder UITextField in UITableView? I want to do like a below. Push edit button, then focus on UITextField in UITableView.
-(void)setEditing:(BOOL)editing animated:(BOOL)animated{
if (editing) {
for ( int i = 0 ; i < items.count ; ++ i ) {
UITextField * ii = [textFields_ objectAtIndex:i];
if ([textFields_ objectAtIndex:i] == [NSNull null]) {
}
[ii setUserInteractionEnabled:YES];
if (ii.tag == 0) {
[ii becomeFirstResponder];
}
}
}