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.

Possible Duplicate:
What does the question mark and the colon (?: ternary operator) mean in objective-c?

I understand that we're setting oldRow equal to some index path. I have never seen this syntax and can't find explanation in the book I'm using. What is the purpose of the ? in the code below and what exactly does this code do?

int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1;
share|improve this question

marked as duplicate by vcsjones, Dan F, Josh Caswell, bažmegakapa, Donal Fellows Jun 14 '12 at 20:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1;

is equivalent to:

int oldrow = 0;
if (lastIndexPath != nil)
    oldRow = [lastIndexPath row];
else 
    oldRow = -1;

That syntax is called a ternary operator and follows this syntax:

condition ? trueValue : falseValue;

i.e oldRow = (if lastIndexPath is not nil ? do this : if it isn't do this);
share|improve this answer
Awesome. Thanks a lot. I see this syntax popping up a lot recently, so this was really helpful. – Sean Smyth Jun 14 '12 at 17:48
FWIW the correct name is ternary, not tertiary. – vcsjones Jun 14 '12 at 17:49
@vcsjones thanks, I have changed it. – max_ Jun 14 '12 at 18:58

This is a shorthand if statement. Basically it is the same as:

int oldRow;

if(lastIndexPath != nil)
{
    oldRow = [lastIndexPath row];
}
else
{
     oldRow = -1;
}

It is very handy with conditional assignments

share|improve this answer

this code is equal to this code

int oldRow;

if (lastIndexPath != nil)
   oldRow = [lastIndexPaht row];
else
   oldRow = -1;
share|improve this answer

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