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
@@ -0,0 +1,24 @@
//
// ESPTouchDelegate.h
// EspTouchDemo
//
// Created by fby on 8/14/15.
// Copyright (c) 2015 fby. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ESPTouchResult.h"
@protocol ESPTouchDelegate <NSObject>
/**
* when new esptouch result is added, the listener will call
* onEsptouchResultAdded callback
*
* @param result
* the Esptouch result
*/
-(void) onEsptouchResultAddedWithResult: (ESPTouchResult *) result;
@end