I'm trying to find documentation on how I can override a property name in Objective-C with @synthesize. If I have an instance variable name of 'foo', I want to write it's accessor as 'bar'.
Doing something such as
@synthesize foo = bar;
gives a compile-time error.