up vote 0 down vote favorite
share [g+] share [fb]

So I'm calling this:

[leftSwitch hidden:NO];

but the iPhone Simulator just crashes (no compiler errors) when I click on the Segmented Control that calls the IBAction that this code is from.

However, as soon as I change this to:

leftSwitch.hidden = NO;

it works...I made no other changes.

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

You want

[leftSwitch setHidden:NO];

Note the automatic change in name-- the method version gets the set prefix.

link|improve this answer
oh i totally forgot about that...i was only thinking of the "is" prefix for boolean accessors – Devoted Jun 16 '10 at 19:17
feedback

The default methods synthesized for properties are

[foo bar]

which is the getter, and

[foo setBar:other]

which is the setter.

But the property shorthand allows you to access these methods by using dot notation so it appears that you are accessing like any other ivar, but you are really using these synthesized properties in the background. in the property declaration, you can change the default names, but it is best to leave it based on the normal Objective C conventions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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