views:

19

answers:

1

So if a have this property:

@property (nonatomic, retain) MKReverseGeocoder *reverseGeocoder;

and i want to set it, does the case always change:

[self setReverseGeocoder: ...

Seems a bit weird to get used to! I mean the property name is lower case!

+1  A: 

Yes, because that's the convention for naming setters/getters for Key Value Coding

David Gelhar