iOS 7: on textfield did change the firstresponder my application is crashing

前端 未结 3 826
春和景丽
春和景丽 2021-01-14 20:13

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

         


        
3条回答
  •  臣服心动
    2021-01-14 20:56

    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];
    

提交回复
热议问题