vote up 0 vote down star

I'm trying to read the cocos2d api doc but I'm confused about what the [...] means in something like:

- (float) scale [read,write,assign]

I am expecting a type and a parameter name, so something like

- (void) addFrameWithFilename: (NSString *) filename

makes sense.

flag

70% accept rate

2 Answers

vote up 2 vote down check

It's a description of a property (and those are separated out as such in the docs you linked to). Those are property attributes in the []; in this case they are indicating the existence of two methods, a getter (read) and setter (write):

- (float)scale
- (void)setScale:(float)value
link|flag
vote up 2 vote down

Those are Objective-C 2.0 properties. There is a good tutorial on the topic.

Basically, if you have an instance foo, you can access and modify the property by doing something like:

foo.scale = 3.0f;
link|flag

Your Answer

Get an OpenID
or

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