开发版本-developer——01 first commit

This commit is contained in:
wbzhan
2019-07-08 18:24:03 +08:00
parent 5a10dfa182
commit 8693efe121
386 changed files with 7069 additions and 1951 deletions
@@ -0,0 +1,24 @@
//
// OpenSecurityGuardSDK version 2.1.0
//
#import <Foundation/Foundation.h>
@protocol IOpenDataCollectionComponent <NSObject>
/**
* 设置用户昵称
* @param nick, 用户昵称
* @return YES, 设置后值发生改变, NO, 设置失败或值未发生改变
*/
- (BOOL) setNick:(NSString*) nick;
/**
* 获取用户昵称
*
* @return 用户昵称,获取失败返回nil
*/
- (NSString*) getNick;
@end