12345678910111213141516171819202122232425262728 |
- //
- // AdIdNameInCSVUtils.h
- // UUTUtils2.1
- //
- // Created by zhuge on 2020/7/15.
- // Copyright © 2020 dym. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @class ProjectInfo;
- @interface AdIdNameInCSVUtils : NSObject
- @property (strong) ProjectInfo *projectInfo;
- @property (strong) NSMutableDictionary *mdConfigs;
- + (AdIdNameInCSVUtils*) shared;
- - (void)initWithProjectPath:(ProjectInfo*)project;
- - (void) setAdIdIndex:(NSString*)idIndex withName:(NSString*)name;
- - (NSString*)adNameForAdIdIndex:(NSString*)idIndex;
- - (void) save;
- @end
- NS_ASSUME_NONNULL_END
|