12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- //
- // InheritScanViewController.m
- // AILinkBleSDKSourceCode
- //
- // Created by iot_user on 2020/4/7.
- // Copyright © 2020 IOT. All rights reserved.
- //
-
- #import "InheritScanViewController.h"
- #import <AILinkBleSDK/ELBluetoothManager.h>
- #import "Masonry.h"
- #import "SubBleManager.h"
- #import "InheritConnectViewController.h"
-
- @interface InheritScanViewController ()<UITableViewDelegate,UITableViewDataSource,SubBleManagerDelegate>
- @property (nonatomic, strong) UITableView *tableView;
-
- @property (nonatomic, strong) NSArray<ELPeripheralModel *> *devices;
-
- @end
-
- @implementation InheritScanViewController
-
-
- - (void)viewDidLoad {
- [super viewDidLoad];
-
-
- // self.title = @"Devices";
-
- [self.view addSubview:self.tableView];
- [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.left.right.bottom.mas_equalTo(0);
- }];
-
- }
- -(void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- [[SubBleManager shareManager] startScan];
- [SubBleManager shareManager].subDelegate = self;
- }
- -(void)viewDidDisappear:(BOOL)animated{
- [super viewDidDisappear:animated];
- [[ELBluetoothManager shareManager] stopScan];
- }
- #pragma mark ============ ELBluetoothManagerDelegate ==============
- -(void)subBluetoothUpdateState:(ELBluetoothState)state{
- NSLog(@"bluetoothManagerUpdateBleState = %ld",state);
- }
-
- -(void)subBluetoothScanPeripherals:(NSArray *)peripherals{
- self.devices = peripherals;
- [self.tableView reloadData];
- }
-
- -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
- return self.devices.count;
- }
- -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- return 60;
- }
- -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
- static NSString *cellId = @"cellid";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
- if (!cell) {
- cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:cellId];
- }
- ELPeripheralModel *p = self.devices[indexPath.row];
- cell.textLabel.text = [NSString stringWithFormat:@"Name:%@ Mac:%@\nCID:0x%04lX VID:0x%04lX PID:%ld", p.deviceName, p.macAddress, (unsigned long)p.deviceType, p.vendorID, p.productID];
- cell.textLabel.numberOfLines = 0;
- cell.textLabel.textColor = [UIColor blackColor];
-
- return cell;
-
- }
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
- ELPeripheralModel *p = self.devices[indexPath.row];
- InheritConnectViewController *vc = [[InheritConnectViewController alloc] init];
- vc.p = p;
- [self.navigationController pushViewController:vc animated:YES];
- }
- -(UITableView *)tableView{
- if (_tableView == nil) {
- _tableView = [[UITableView alloc] init];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- }
- return _tableView;
- }
-
- @end
|