What does this line of code mean?
label.frame = (inPseudoEditMode) ? kLabelIndentedRect : kLabelRect;
The ? and :
?
:
This is part of C, so it's not Objective-C specific. Here's a translation into an if statement:
if
if (inPseudoEditMode) label.frame = kLabelIndentedRec; else label.frame = kLabelRect;