1234567891011121314151617181920 |
- //
- // Macir.h
- // Runner
- //
- // Created by apple on 2021/9/22.
- //
- #ifndef Macir_h
- #define Macir_h
- #define ObjectIsNil(__object) ((nil == __object) || [__object isKindOfClass:[NSNull class]])
- /// 字符串为空
- #define StringIsEmpty(__string) ((__string.length == 0) || ObjectIsNil(__string))
- // 字符串不为空
- #define StringIsNotEmpty(__string) (!StringIsEmpty(__string))
- #endif /* Macir_h */
|