iphone - logical Operators in objective C? -
logical operators in objective c language?
random stab in dark @ you're asking:
yes, objective-c has logical operators. same in c
&&
and
||
or
!
not
so expression !a || b
can read "(not a) or b"
Comments
Post a Comment