Macro.h 407 B

1234567891011121314151617181920
  1. //
  2. // Macir.h
  3. // Runner
  4. //
  5. // Created by apple on 2021/9/22.
  6. //
  7. #ifndef Macir_h
  8. #define Macir_h
  9. #define ObjectIsNil(__object) ((nil == __object) || [__object isKindOfClass:[NSNull class]])
  10. /// 字符串为空
  11. #define StringIsEmpty(__string) ((__string.length == 0) || ObjectIsNil(__string))
  12. // 字符串不为空
  13. #define StringIsNotEmpty(__string) (!StringIsEmpty(__string))
  14. #endif /* Macir_h */