12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // NSMutableDictionary+Utilities.h
- // BUAdSDK
- //
- // Created by 李盛 on 2018/2/28.
- // Copyright © 2018年 bytedance. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSDictionary (BU_Helper)
- #pragma mark - Safe Value Type From Key
- - (nullable NSString *)bu_stringForKey:(NSString *)key defaultValue:(nullable NSString *)defalutValue;
- - (BOOL)bu_boolForKey:(NSString *)key defaultValue:(BOOL)defalutValue;
- - (NSInteger)bu_integerForKey:(NSString *)key defaultValue:(NSInteger)defalutValue;
- - (long)bu_longForKey:(NSString *)key defaultValue:(long)defalutValue;
- - (long long)bu_longLongForKey:(NSString *)key defaultValue:(long long)defalutValue;
- - (NSTimeInterval)bu_timeIntervalForKey:(NSString *)key defaultValue:(NSTimeInterval)defalutValue;
- - (float)bu_floatForKey:(NSString *)key defaultValue:(float)defalutValue;
- - (nullable NSArray *)bu_arrayForKey:(NSString *)key defaultValue:(nullable NSArray *)defalutValue;
- - (nullable NSDictionary *)bu_dictionaryForKey:(NSString *)key defaultValue:(nullable NSDictionary *)defalutValue;
- @end
- @interface NSDictionary(BU_JSONValue)
- - (nullable NSString *)bu_JSONRepresentation:(NSError **)error;
- + (nullable NSDictionary *)bu_dictionaryWithJSONData:(nullable NSData *)inData error:(NSError **)outError;
- + (nullable NSDictionary *)bu_dictionaryWithJSONString:(NSString *)inJSON error:(NSError **)outError;
- - (void)bu_forEachWithBlock:(void(^)(id key, id value))block;
- @end
- @interface NSDictionary(BU_Formate)
- - (void)bu_parserWithKey:(NSString *)key stringValue:(NSString *_Nullable*_Nullable)stringValue dictValue:(NSDictionary *_Nullable*_Nullable)dictValue aryValue:(NSArray *_Nullable*_Nullable)aryValue;
- @end
- @interface NSMutableDictionary (BU_Helper)
- #pragma mark - Safe Set Object For Key
- - (void)bu_setObject:(nullable id)object forKey:(nullable id<NSCopying>)key;
- @end
- NS_ASSUME_NONNULL_END
|