epptouch sdk更新,闪退修改强化

This commit is contained in:
kai
2021-06-26 22:37:40 +08:00
parent 0ab7d833a0
commit 6d1d973610
19 changed files with 268 additions and 203 deletions
+36
View File
@@ -0,0 +1,36 @@
//
// ESPTouchResult.h
// EspTouchDemo
//
// Created by fby on 4/14/15.
// Copyright (c) 2015 fby. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ESPTouchResult : NSObject
// it is used to check whether the esptouch task is executed suc
@property (nonatomic,assign) BOOL isSuc;
// it is used to store the device's bssid
@property (nonatomic,strong) NSString * bssid;
// it is used to check whether the esptouch task is cancelled by user
@property (atomic,assign) BOOL isCancelled;
// it is used to store the device's ip address
@property (atomic) NSData * ipAddrData;
/**
* Constructor of EsptouchResult
*
* @param isSuc whether the esptouch task is executed suc
* @param bssid the device's bssid
* @param ipAddrData the device's ip address
*/
- (id) initWithIsSuc: (BOOL) isSuc andBssid: (NSString *) bssid andInetAddrData: (NSData *) ipAddrData;
- (NSString *) getAddressString;
@end