I've started programming an iPhone app using CoreData and trying to make my codebase as maintainable as possible. Therefore I would like to avoid hard-coded strings such as:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name == %@", aName];
Instead I would like to be able to write something like:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%K == %@", Person.name, aName];
That way I would get the compiler to check whether name is a property of the entity Person and avoid spelling mistakes.
With this code though I'm getting the following error at compile time:
Property name not found on object of type Person
Person being of type NSManagedObject and automatically generated by Xcode from my MyApp.xcdatamodeld.
name is a simple string attribute of the entity Person
I've googled up and SOed up quite a lot already for an answer to this specific issue. I've also tried using property_getName and NSPropertyDescription with not luck so far.
Thanks in advance for you help,
Joss.

@"name"to the@Kargument. – Joe Jan 3 at 16:21