Guest User

Untitled

a guest
Jan 12th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ```objc
  2. /* don't use this code */
  3.  
  4. if(check() == YES){
  5. //CODE
  6. }
  7.  
  8. /* because BOOL values can have any value becase it is implemnted as ``unsigned char`` in 32 bit arch systems */
  9.  
  10. /* use this insted */
  11.  
  12. if(check()){
  13. //CODE
  14. }
  15. ```
Add Comment
Please, Sign In to add comment