Simple types / Boolean
Conversion from a string
Converting to a string
Getting values
Logical operations
bool
sunIsStar =
true
;
NSString
*str = sunIsStar ?
@"true"
:
@"false"
;
//str is "true"