vote up 3 vote down star

If I was creating an entity with a non-optional string attribute called, say, "name", I would put "Untitled" as the default. How could I localise this default value?

I could subclass the entity and and use NSLocalizedString in awakeFromInsert to do this. But I was wondering if there was another way.

Edit:

If this is the only way, then I'm fine with it. Just curious.

flag

79% accept rate

4 Answers

vote up 1 vote down

You can localize most aspects of a managed object model, including entity and property names and error messages. See here: http://developer.apple.com/documentation/Cocoa/Conceptual/CoreData/Articles/cdUsingMOM.html#//apple_ref/doc/uid/TP40005190-SW13

link|flag
Thanks, but I'd already seen that. But that doesn't show how to localise the default value for a property. In my example it would be localising "name" rather than "Untitled" – Abizern Jun 11 at 15:44
vote up 1 vote down

Maybe you can localize the default values in your model (.mom file) and put the model files in the appropiate .lproj resource folders?

link|flag
vote up 1 vote down

I think awakeFromInsert is the only way

link|flag
vote up 1 vote down

You can try using -[NSEntityDescription attributesByName]. This will give you back an NSDictionary of NSAttributeDescription objects. You can then pull the one you want and use -[NSAttributeDescription setDefaultValue:] on it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.