12345678910111213141516171819202122 |
- //
- // RQKeyedSubscript.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/16.
- // Copyright © 2018 张嵘. All rights reserved.
- // 参数
- #import <Foundation/Foundation.h>
- @interface RQKeyedSubscript : NSObject
- /// 类方法
- + (instancetype) subscript;
- /// 拼接一个字典
- + (instancetype)subscriptWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (id)objectForKeyedSubscript:(id)key;
- - (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
- /// 转换为字典
- - (NSDictionary *)dictionary;
- @end
|