I can set the text in my managed entity like this ...
[editedObject setValue:textField.text forKey:editedFieldKey]
but I can’t install this ...
[editedObject setValue:numberField.text forKey:editedFieldKey]
In the Xcode template, I can set this directly to a managed entity, but like this ...
setValue:[NSNumber numberWithInt:200] forKey:@"jCode"];
but I can’t configure it using UITextField ... Please can someone point me in the right direction ... It will be highly appreciated ...
source
share