logical Operators in objective C? [closed]
Logical Operators in objective c language?
Random stab in the dark at what you're asking:
yes, Objective-C has logical operators. They are exactly the same as in C
&&
is and
||
is or
!
is not
so an expression !a || b
can be read as "(not a) or b"
精彩评论