黄学彪
2021-01-28 1fcf2302f79f9cbea5ef17c3688311ed65cfabb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  TYBLECentralManager.h
//  TuyaSmartPublic
//
//  Created by 冯晓 on 16/8/2.
//  Copyright © 2016年 Tuya. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <CoreBluetooth/CoreBluetooth.h>
 
@interface TYBLECentralManager : NSObject <CBCentralManagerDelegate>
 
/**
 *  蓝牙是否打开
 */
@property (nonatomic, assign, readonly) BOOL isPoweredOn;
 
/**
 *  CBCentralManager对象
 */
@property (nonatomic, strong, readonly) CBCentralManager *cbManager;
 
- (void)tyble_performSelector:(SEL)aSelector withObject:(id)anArgument afterDelay:(NSTimeInterval)delay;
 
- (void)tyble_cancelPreviousPerformRequestsWithTarget:(id)aTarget selector:(SEL)aSelector object:(nullable id)anArgument;
 
@end