when setting a property does the property name always change to camelcase?

Posted by TheLearner on Stack Overflow See other posts from Stack Overflow or by TheLearner
Published on 2010-06-01T11:08:35Z Indexed on 2010/06/01 11:23 UTC
Read the original article Hit count: 206

Filed under:
|

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!

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about ipad-sdk