123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // CLDataPlist.h
- // SolarBT
- //
- // Created by weclouds on 2019/4/24.
- // Copyright © 2019 weclouds. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CLDataPlist : NSObject
- @property (nonatomic,strong)NSString *BLEName;
-
- +(id)sharePlist;
-
- /**
- 初始化函数
-
- */
- -(void)writeToPlistWithBlename:(NSString *)blename;
-
- -(NSString *)description;
- //读取plist文件
- /**
- return 返回用户信息字典
- */
- -(NSMutableDictionary *)readDataFromPlist;
-
-
- /**
- 删除plist
- */
- -(void)deleleteDatePlist;
-
- /**
- 可依据key (username)删除设备
-
- */
- -(void)removeDataWithKey:(NSString *)key;
- @end
- NS_ASSUME_NONNULL_END
|