-1

我有一个 UIViewController 类,我在其上设置了一个 tableview 和 tableview。我在tableview单元格上设置了tableview单元格,我有一个文本字段,该文本字段与我从中获取值的数据库链接,但我想更改该值我使该字段可编辑但在编辑该值后应该再次保存以前的值请帮我

((UITextField*)[cell viewWithTag:101]).placeholder = @"title";
    ((UITextField*)[cell viewWithTag:101]).text =  arrayActivities[indexPath.row][@"title"]; //arrayActivities[indexPath.row];
    ((UITextField*)[cell viewWithTag:101]).keyboardType = UIKeyboardTypeDefault;
4

1 回答 1

0

将 textfield 委托分配给 self ,并添加此委托方法:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
        return NO;
 }
于 2013-06-20T11:23:03.093 回答