1234567891011121314151617181920212223242526272829 |
- //
- // ProjectInfo_Local.m
- // UUTUtils
- //
- // Created by zhuge on 2017/12/23.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import "ProjectInfo_Local.h"
- #define key_sdkKeys @"sdk_keys"
- #define key_translate @"translate"
- @implementation ProjectInfo_Local
- + (ProjectInfo_Local *)create:(NSDictionary *)dic {
- ProjectInfo_Local *local = [[ProjectInfo_Local alloc] init];
- local.sdkKeys = [ProjectInfo_Local_SDKKeys create:dic[key_sdkKeys]];
- local.translate = [ProjectInfo_Local_Translate create:dic[key_translate]];
- return local;
- }
- - (NSDictionary *)toDic {
- return @{
- key_sdkKeys : [self.sdkKeys toDic],
- key_translate : [self.translate toDic],
- };
- }
- @end
|