Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What does this line of code mean?

label.frame = (inPseudoEditMode) ? kLabelIndentedRect : kLabelRect;

The ? and : confuse me.

share|improve this question
1  
Note that this should be question mark, not quotation mark. – clahey Apr 7 '10 at 19:48
oops, sorry you're right. – rdesign Apr 7 '10 at 19:55
1  
The compiler also seems to allow variable ?: anotherVariable, what does this mean?' – Tony Dec 30 '11 at 17:31
2  
The ternary with no first element means the same as (valOrVar != 0) ? valOrVar : anotherValorvar – Scott Lahteine Mar 24 '12 at 2:11

7 Answers

up vote 79 down vote accepted

This is the C ternary operator (Objective-C is a superset of C):

label.frame = (inPseudoEditMode) ? kLabelIndentedRect : kLabelRect;

is semantically equivalent to

if(inPseudoEditMode) {
 label.frame = kLabelIndentedRect;
} else {
 label.frame = kLabelRect;
}
share|improve this answer
1  
uhh that was fast :) Thanks a lot. – rdesign Apr 7 '10 at 19:47
9  
(update: Yuck! Reposting as an answer.) What is so important about the ternary operator is that it can be used in places that an if-else cannot. ie: Inside a condition or method parameter. [NSString stringWithFormat: @"Status: %@", (statusBool ? @"Approved" : @"Rejected")] ...which is a great use for preprocessor constants: #define statusString (statusBool ? @"Approved" : @"Rejected") ...then: [NSString stringWithFormat: @"Status: %@", statusString] This saves you from having to use and release local variables in if-else patterns. FTW! – Richard Bronosky May 6 '10 at 15:52

Building on Barry Wark's excellent explanation...

What is so important about the ternary operator is that it can be used in places that an if-else cannot. ie: Inside a condition or method parameter.

[NSString stringWithFormat: @"Status: %@", (statusBool ? @"Approved" : @"Rejected")]

...which is a great use for preprocessor constants:

// in your pch file...
#define statusString (statusBool ? @"Approved" : @"Rejected")

// in your m file...
[NSString stringWithFormat: @"Status: %@", statusString]

This saves you from having to use and release local variables in if-else patterns. FTW!

share|improve this answer

That's just the usual ternary operator. If the part before the question mark is true, it evaluates and returns the part before the colon, otherwise it evaluates and returns the part after the colon.

a?b:c

is like

if(a)
    b;
else
    c;
share|improve this answer

It's the tertiary operator. It's basic form is:

condition ? valueIfTrue : valueIfFalse

Where the values will only be evaluated if they are chosen.

share|improve this answer
5  
This should've been up voted more, so simple and clear. – Celeritas May 31 '12 at 21:26

It's just a short form of writing an in-then-else statement. It means the same as the following code:

if(inPseudoEditMode)
  label.frame = kLabelIndentedRect 
else
  label.frame = kLabelRect;
share|improve this answer

This is part of C, so it's not Objective-C specific. Here's a translation into an if statement:

if (inPseudoEditMode)
    label.frame = kLabelIndentedRec;
else
    label.frame = kLabelRect;
share|improve this answer

It's the ternary if-then-else operator

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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