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?

    NSString *requestString = (self.isFirstTimeDownload) ? [NSString stringWithFormat:[self.commonModel.apiURLs objectForKey:@"updateNewsVerPOST"],@""] : [NSString stringWithFormat:[self.commonModel.apiURLs objectForKey:@"updateNewsVerPOST"], [[NSUserDefaults standardUserDefaults] objectForKey:@"localnewsupdate"]];

Can anyone help me to understand what this is ()? and : in Objective-c? Thank you!!

share|improve this question

marked as duplicate by Josh Caswell, jlehr, Luksprog, Monolo, mschr Sep 26 '12 at 18:21

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.

2 Answers

That's a ternary operator.

Example:

  bool foo(int i)
  {
      if ( i > 5 ) 
          return true;
      else
          return false;
  }

is equivalent to

  bool foo(int i)
  {
      return ( i > 5 ) ? true : false;
  }

You can omit the first operand: x ? : b in which case, the value of the expression is x when x is non zero, or b otherwise. Example:

int i = 1;
i = 2 ? : 3;   // equivalent to i = 2; (because 2 is non zero)
i = YES ? : 3; // equivalent to i = 1; (because YES is 0x01, which is not zero)
share|improve this answer
thanks a lot!!! – user1168295 Sep 26 '12 at 16:33
@Jano Thanks for the extra information added. – Mahesh Sep 26 '12 at 18:51

It's a ternary operator:

NSString *requestString = ( boolean condition ) ? @"valueIfTrue" : @"valueIfFalse";
share|improve this answer

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