I have editable tableview cell,and when i move from first textfield to last textfield in the table it is crashing.Code is.The below code is for textfield delegate
Had the same issue. I fixed it by placing identifier to the table view cell's nib file. then a dequeue call at cellForRowAtIndexPath:
static NSString *fsCellIdentifier = @"configurationCell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:fsCellIdentifier];