What does this line of code mean?
label.frame = (inPseudoEditMode) ? kLabelIndentedRect : kLabelRect;
The ? and :
?
:
Simply, the logic would be
(condition) ? {code for YES} : {code for NO}