I can set text in my managed object like this...
[editedObject setValue:textField.text forKey:editedFieldKey];
but I can't set this...
[editedObject setValue:numberField.text forKey:editedFieldKey];
In the XCode Template I can set this straight into the Managed Object but like this...
setValue:[NSNumber numberWithInt:200] forKey:@"jCode"];
but I can't seem to set it via a UITextField... Please can someone point me in the right direction... It will be highly appriciated...