Guest User

Untitled

a guest
Jul 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. @interface NSNull (integer)
  2.  
  3. -(int)intValue;
  4.  
  5. @end
  6.  
  7. @interface NSNull (NSString)
  8.  
  9. -(NSString*)stringValue;
  10.  
  11. @end
  12.  
  13. @implementation NSNull (functional)
  14.  
  15. -(int)intValue {
  16. return -1;
  17. }
  18.  
  19. -(NSString*)stringValue {
  20. return @"";
  21. }
  22.  
  23. @end
Add Comment
Please, Sign In to add comment