NSDictionary+Extension.h 290 B

1234567891011121314151617
  1. //
  2. // NSDictionary+Extension.h
  3. // APEX CRM
  4. //
  5. // Created by Ray on 2018/11/29.
  6. // Copyright © 2018 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSDictionary (Extension)
  11. -(BOOL) isNull:(NSString*)key;
  12. @end
  13. NS_ASSUME_NONNULL_END