IOS Ble蓝牙开发实现方法

本篇博文阐述如何开发Ble蓝牙。在蓝牙中的一些常见服务,扫描,以及链接;

  • 主蓝牙类文件.h
  • 主蓝牙类文件.m
  • UUID文件
  • 蓝牙列表展示的文件

一:引入Ble蓝牙的框架<CoreBluetooth/CoreBluetooth.h>

BuleHelp.h

#import <Foundation/Foundation.h>
//导入蓝牙框架
#import <CoreBluetooth/CoreBluetooth.h>
#import "DeviceModel.h"
#import "Constants.h"
#import "CommonUserDefaults.h"
#import "CommonUtil.h"
#import "TempDB.h"

#define COMMAND_PACKET_MIN_SIZE 7

@interface BlueHelp : NSObject

//蓝牙的设备搜索显示在列表中
@property (nonatomic, strong) NSMutableArray <CBPeripheral*>*periperals;

//连接peripheral
@property(nonatomic,strong) CBPeripheral *peripheral;

//连接peripheral
@property(nonatomic,strong) CBPeripheral *selectperipheral;

//中心管理者
@property (nonatomic, strong) CBCentralManager *centerManager;

@property (nonatomic,strong) DeviceModel *deviceModel;

//设备列表
@property (nonatomic,strong) NSMutableArray *deviceList;

@property (nonatomic,strong) NSMutableArray *commandArray;
//是否进行ota升级
@property (nonatomic) BOOL isOta;

@property (nonatomic) BOOL isWritePacketDataSuccess;

@property (strong,nonatomic) NSString * checkSumType;

/*!
 * @property isApplicationValid
 *
 * @discussion flag used to check whether the application writing is success
 *
 */
@property (nonatomic) BOOL isApplicationValid;
/*!
 * @property checkSum
 *
 * @discussion checkSum received from the device for writing a single row
 *
 */
@property (assign) uint8_t checkSum;

/*!
 * @property startRowNumber
 *
 * @discussion Device flash start row number
 *
 */
@property (nonatomic) int startRowNumber;

/*!
 * @property endRowNumber
 *
 * @discussion Device flash end row number
 *
 */
@property (nonatomic) int endRowNumber;

/*!
 * @property siliconIDString
 *
 * @discussion siliconID from the device response
 *
 */
@property (strong,nonatomic) NSString *siliconIDString;
/*!
 * @property siliconRevString
 *
 * @discussion silicon rev from the device response
 *
 */
@property (strong,nonatomic) NSString *siliconRevString;

//是否发送数据
@property (nonatomic) BOOL isSendData;

@property (strong,nonatomic) CommonUtil *commonUtil;

@property (strong,nonatomic) TempDB *tempDB;

@property (strong,nonatomic) NSDate *currentDate;

//时间格式化
@property(strong,nonatomic) NSDateFormatter *dateformatter;

@property(strong,nonatomic) NSString *deviceName;

//@property (nonatomic,strong) NSUserDefaults *userDefaults;

@property (nonatomic,strong) CommonUserDefaults *userDefaults;
//发送温度数据
@property (nonatomic,strong) CBCharacteristic *sendtempcharateristic;
//发送OTA数据
@property (nonatomic,strong) CBCharacteristic *sendotacharateristic;
//高/低温度数据
//@property (nonatomic,strong) CBCharacteristic *sendhighalarmcharateristic;
//
//@property (nonatomic,strong) CBCharacteristic *sendlowalarmcharateristic;
//ota
@property (nonatomic,strong) CBCharacteristic *senddfucharateristic;
//发送字符串'CR'清除机子上的最大值(3个字节)
@property (nonatomic,strong) CBCharacteristic *senddcrstrateristic;
//发送字符串'PD'机子关机(3个字节)
@property (nonatomic,strong) CBCharacteristic *senddoutstrateristic;
//静音
@property (strong,nonatomic) CBCharacteristic *sendmutealarmcharateristic;
//calset
@property(strong,nonatomic) CBCharacteristic *sendcalsetcharateristic;
//intervaltime
@property(strong,nonatomic) CBCharacteristic *sendintervaltimecharateristic;
//alarmswitch
@property(strong,nonatomic) CBCharacteristic *sendalarmswitchcharateristic;
//tempunit
@property(strong,nonatomic) CBCharacteristic *sendtempunitcharateristic;

@property(strong,nonatomic) CBCharacteristic *sendlowalarmswitchcharateristic;

///<===============方法区块=======================>
+ (id)sharedManager;

-(NSMutableArray *)getDeviceList;

-(NSMutableArray *)getPeriperalList;

-(void)startScan;
//连接蓝牙
-(void)contentBlue:(int) row;
//断开蓝牙
-(void)disContentBle;

//断开ota的蓝牙连接
-(void)disContentOtaBle;

//温度符号
-(void)writeTempUnit:(NSString *)value;

//写入报警开关
-(void)writeAlarmSwitch:(NSString *)value;

//写入mute alarm
-(void)writeMuteAlarm:(NSString *)value;

//写入CR CLERVULE
-(void)writeClearCR:(NSString *)value;

//写入interval time
-(void)writeIntervalTime:(NSString *)value;

//写入cal set
-(void)writeCalSet:(NSString *)value;

//写入设备的开关按钮
-(void)writeBluePD:(NSString *)value;

//写入低温报警
//-(void)writeLowAlarm:(NSString *)value;
//
////写入高温报警
//-(void)writeHighAlarm:(NSString *)value;

//OTA固件升级 又称为DFU
-(void)writeUpdateOTA:(NSString*)value;

-(void)writeBlueOTA:(NSString *)value;

-(void)wirteBlueOTAData:(NSData *)value;

-(void)writeLowAlarmSwitch:(NSString *)value;

-(void) discoverCharacteristicsWithCompletionHandler:(void (^) (BOOL success, NSError *error)) handler;

-(void)updateValueForCharacteristicWithCompletionHandler:(void (^) (BOOL success,id command,NSError *error)) handler;

-(void) stopUpdate;

-(void) setCheckSumType:(NSString *) type;

-(NSData *) createCommandPacketWithCommand:(uint8_t)commandCode dataLength:(unsigned short)dataLength data:(NSDictionary *)packetDataDictionary;

-(void) writeValueToCharacteristicWithData:(NSData *)data bootLoaderCommandCode:(unsigned short)commandCode;

/*
 * 停止扫描
 */
-(void)stopScan;

//是否是第一次连接设备
@property(assign,nonatomic) BOOL isconnected;

//当前的时间
@property(nonatomic,assign) long currentTime;

@property(nonatomic,strong) NSString *macAddre;

@property(nonatomic,strong) NSString *macName;

-(void)disMainOtaBle;

@end

BuleHelp.m

//程序运行后,会自动调用的检查蓝牙的方法 并扫描蓝牙的方法
- (void)centralManagerDidUpdateState:(CBCentralManager *)central{
 if ([central state] == CBCentralManagerStatePoweredOff) {
  NSLog(@"CoreBluetooth BLE hardware is powered off");
 }
 else if ([central state] == CBCentralManagerStatePoweredOn) {
  NSLog(@"CoreBluetooth BLE hardware is powered on and ready");
  [self startScan];
 }
 else if ([central state] == CBCentralManagerStateUnauthorized) {
  NSLog(@"CoreBluetooth BLE state is unauthorized");
 }
 else if ([central state] == CBCentralManagerStateUnknown) {
  NSLog(@"CoreBluetooth BLE state is unknown");
 }
 else if ([central state] == CBCentralManagerStateUnsupported) {
  NSLog(@"CoreBluetooth BLE hardware is unsupported on this platform");
 }
}
/*
 * 程序运行的时候开始扫描
 */
-(void)startScan{
 _periperals = [[NSMutableArray alloc] init];
 _deviceList = [[NSMutableArray alloc] init];
 //2.利用中心设备扫描外部设备
 [_centerManager scanForPeripheralsWithServices:nil options:nil];
}

/*
 * 停止扫描
 */
-(void)stopScan{
 [_centerManager stopScan];
}
/*
 * 设备中可以包含 Device addre地址 放在 key:kCBAdvDataManufacturerData中既可以得到
 * 1.硬件开发工程师 把地址写入到设备的厂家信息中。
 */

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *,id> *)advertisementData RSSI:(NSNumber *)RSS{
 //判断如果数组中不包含当前扫描到的外部设备才保存
 if (![_periperals containsObject:peripheral]){
  //包扣3种设备 都需要去搜索
  if([peripheral.name containsString:@"TMW012BT"]||[peripheral.name containsString:@"OTA"]){
   NSLog(@"DATA: %@", advertisementData);
   NSArray *keys = [advertisementData allKeys];
   for (int i = 0; i < [keys count]; ++i) {
    id key = [keys objectAtIndex: i];
    NSString *keyName = (NSString *) key;
    NSData *value = [advertisementData objectForKey: key];

    if([keyName isEqualToString:@"kCBAdvDataManufacturerData"]){
     NSLog(@"value is %@",value);
     NSString *result = [self convertDataToHexStr:value];
     NSLog(@"reslut is %@",result);
     if(result!=nil&&result.length>4){
      NSString *d = [result substringFromIndex:4];
      NSLog(@"D IS %@",d);
      // 小写
      //NSString *lower = [test lowercaseString];
      // 大写
      NSString *upper = [d uppercaseString];
      _macAddre = [NSString stringWithFormat:@"S/N:%@",upper];
     }
    }

    if([keyName isEqualToString:@"kCBAdvDataLocalName"]){
     NSString *aStr= (NSString*)value;
     NSLog(@"astr is %@",aStr);
     _macName = aStr;
    }
   }

   _deviceModel = [DeviceModel new];
   _deviceModel.deviceName = _macName;
   //蓝牙地址
   _deviceModel.deviceAddre = _macAddre;

   int rssi = [RSS intValue];
   NSString *range = [NSString stringWithFormat:@"%d",rssi];
   NSString *rs = [NSString stringWithFormat:@"RSSI %@dBm",range];
   //添加到里面
   [self.periperals addObject:peripheral];
   _deviceModel.deviceRssi = rs;
   [_deviceList addObject:_deviceModel];
  }
 }
}
//解析广播里面的数据
-(void)getAdvertisementData:(NSDictionary<NSString *,id> *) advertisementData{
 NSArray *keys = [advertisementData allKeys];
 for (int i = 0; i < [keys count]; ++i) {
  id key = [keys objectAtIndex: i];
  NSString *keyName = (NSString *) key;
  NSObject *value = [advertisementData objectForKey: key];

  if([keyName isEqualToString:@"kCBAdvDataManufacturerData"]){
   printf(" key: %s\n", [keyName cStringUsingEncoding: NSUTF8StringEncoding]);
   NSString *values = (NSString *) value;
   NSLog(@"values is %@",values);
  }
 }
}
/*
 * 连接蓝牙设备给外部调用的方法
 * 传入的是相对应的行数
 */
-(void)contentBlue:(int) row{
 [_centerManager connectPeripheral:_periperals[row] options:nil];
}

-(void)disContentBle{
 //关键的断开蓝牙 通知也要停止掉
 if((_peripheral!=nil && _sendtempcharateristic!=nil)){
  [_peripheral setNotifyValue:NO forCharacteristic:_sendtempcharateristic];
  [self disconnectPeripheral:_peripheral];
 }
}

/*
 * 断开ota的 连接
 */
-(void)disContentOtaBle{
 if(_peripheral!=nil && _sendotacharateristic!=nil){
  [_peripheral setNotifyValue:NO forCharacteristic:_sendotacharateristic];
  [self disconnectPeripheral:_peripheral];
 }
}

-(void)disMainOtaBle{
 if(_peripheral!=nil){
  [self disconnectPeripheral:_peripheral];
 }
}

- (void) disconnectPeripheral:(CBPeripheral*)peripheral
{
 [_centerManager cancelPeripheralConnection:peripheral];
}
//连接成功
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral{
 NSLog(@"连接成功");
 if(peripheral!=nil){
  //停止扫描 这个用于自动连接的时候
  [_centerManager stopScan];
  //设备名称
  _deviceName = peripheral.name;

  _selectperipheral = peripheral;

  peripheral.delegate = self;
  //再去扫描服务
  [peripheral discoverServices:nil];

 }
}
//连接失败
- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(nullable NSError *)error{
 NSLog(@"连接失败,失败原因:%@",error);
 NSString *disContentBlue = @"discontentblue";
 NSDictionary *blueDiscontent = [NSDictionary dictionaryWithObject:disContentBlue forKey:@"disconnect"];
 //发送广播 连接失败
 [[NSNotificationCenter defaultCenter] postNotificationName:@"disNofiction" object:nil userInfo:blueDiscontent];
}
//断开连接
- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{
 NSLog(@"断开连接");
 NSString *disContentBlue = @"discontentblue";
 //_blueiscon = @"Disconnect";
 NSDictionary *blueDiscontent = [NSDictionary dictionaryWithObject:disContentBlue forKey:@"disconnect"];
 //发送广播 连接失败
 [[NSNotificationCenter defaultCenter] postNotificationName:@"disNofiction" object:nil userInfo:blueDiscontent];
}
//只要扫描到服务就会调用,其中的外设就是服务所在的外设
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error{
 if (error){
  NSLog(@"扫描服务出现错误,错误原因:%@",error);
 }else{
  //获取外设中所扫描到的服务
  for (CBService *service in peripheral.services){
   //拿到需要扫描的服务,例如FFF0 比如打印温度数据
   //把所有的service打印出来
   //从需要的服务中查找需要的特征
   //从peripheral的services中扫描特征
   [peripheral discoverCharacteristics:nil forService:service];
  }
 }
}
//只要扫描到特征就会调用,其中的外设和服务就是特征所在的外设和服务
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(nonnull CBService *)service error:(nullable NSError *)error{
 if(error){
  NSLog(@"扫描特征出现错误,错误原因:%@",error);
 }else{
  //遍历特征,拿到需要的特征进行处理
  for (CBCharacteristic *characteristic in service.characteristics){
   NSLog(@"characteristic is %@",characteristic.UUID);
   //如果是温度数据处理
   if([characteristic.UUID isEqual:BOOT_TEMPVALUE_UUID]){
    //将全部的特征信息打印出来
    _isconnected = true;
    _peripheral = peripheral;
    _sendtempcharateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }
   //如果是ota进行ota升级
   else if([characteristic.UUID isEqual:BOOT_OTA_WIRTE_UUID]){
    _peripheral = peripheral;
    _sendotacharateristic = characteristic;
    //设置通知
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
    _isOta = TRUE;
    [_userDefaults saveOta:_isOta];
    //[_ setBool:_isOta forKey:@"isOTA"];
    NSString *s = @"OTA";
    NSDictionary *tempOta = [NSDictionary dictionaryWithObject:s forKey:@"ota"];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"tempOTA" object:nil userInfo:tempOta];
   }
   //CAL
   else if([characteristic.UUID isEqual:BOOT_CAL_UUID]){
    _sendcalsetcharateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }
   //interval time
   else if([characteristic.UUID isEqual:BOOT_INTERVALTIME_UUID]){
    _sendintervaltimecharateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }
   //Tempunit
   else if([characteristic.UUID isEqual:BOOT_TEMPUNIT_UUID]){
    _sendtempunitcharateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }

   //DFU
   else if([characteristic.UUID isEqual:BOOT_DFU_UUID]){
    _senddfucharateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }
   //发送字符串'CR'清除机子上的最大值(3个字节)
   else if([characteristic.UUID isEqual:BOOT_CRSTRING_UUID]){
    _senddcrstrateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }
   //发送字符串'PD'机子关机(3个字节)
   else if([characteristic.UUID isEqual:BOOT_OUTSTRING_UUID]){
    _senddoutstrateristic = characteristic;
    [peripheral setNotifyValue:YES forCharacteristic:characteristic];
   }
   else{

   }
  }
 }
}
/*
 设置通知
 */
-(void)notifyCharacteristic:(CBPeripheral *)peripheral
    characteristic:(CBCharacteristic *)characteristic{
 [peripheral setNotifyValue:YES forCharacteristic:characteristic];
 [_centerManager stopScan];
}

/*
 取消通知
 */
-(void)cancelNotifyCharacteristic:(CBPeripheral *)peripheral
     characteristic:(CBCharacteristic *)characteristic{
 [peripheral setNotifyValue:NO forCharacteristic:characteristic];
}
/*
 接收数据解析
 */
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{
 //是否为Ota
 if(!self.isSendOta){
  if(self.readtempcharater == characteristic){
   NSString *tmpData = [self.cmUtil getTempTMWData:characteristic];
   if(tmpData!=nil){
    //开始处理数据
    NSArray *data = [tmpData componentsSeparatedByString:@","];
    TmpModel *tp = [[TmpModel alloc] init];
    tp.tmp = data[0];
    tp.max = data[1];
    tp.unit = data[2];
    //电量
    tp.bat = data[3];

    NSDictionary *tempDict = [NSDictionary dictionaryWithObject:tp forKey:@"tempData"];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"tempNofiction" object:nil userInfo:tempDict];
    if([tp.bat isEqual:@"1"]){
     //低电量广播
     NSDictionary *LowDict = [NSDictionary dictionaryWithObject:tp forKey:@"lowData"];
     [[NSNotificationCenter defaultCenter] postNotificationName:@"lowNofiction" object:nil userInfo:LowDict];
    }
   }
  }
 }
//======================写入数据区块========================//

/*
 写入发送时间
 */
-(void)writeIntervalTime:(NSString *)value periperalData:(CBPeripheral*)periperal{
 if(value!=nil&&periperal!=nil&&self.sendtimecharater!=nil){
  [self writeData:value forCharacteristic:self.sendtimecharater periperalData:periperal];
 }
}

/*
 写入温度单位
 */
-(void)writeTmpUnit:(NSString*)value periperalData:(CBPeripheral*)periperal{
 if(value!=nil&&periperal!=nil&&self.sendunitcharater!=nil){
  [self writeData:value forCharacteristic:self.sendunitcharater periperalData:periperal];
 }
}

/*
 写入Cal值
 */
-(void)writeCalValue:(NSString *)value periperalData:(CBPeripheral*)periperal{
 if(value!=nil&&periperal!=nil&&self.sendcalcharater!=nil){
  [self writeData:value forCharacteristic:self.sendcalcharater periperalData:periperal];
 }
}

/*
 发送Ota使得设备进入Ota
 */
-(void)writeDfuValue:(NSString *)value periperalData:(CBPeripheral*)periperal{
 if(value!=nil&&periperal!=nil&&self.senddfucharater!=nil){
  [self writeData:value forCharacteristic:self.senddfucharater periperalData:periperal];
 }
}

/*
 发送Max Temp实现清零选项
 */
-(void)writeClearValue:(NSString *)value periperalData:(CBPeripheral*)periperal{
 if(value!=nil&&periperal!=nil&&self.sendclearcharater!=nil){
  [self writeData:value forCharacteristic:self.sendclearcharater periperalData:periperal];
 }
}

/*
 发送关机选项实现远程开关机
 */
-(void)writeCloseValue:(NSString *)value periperalData:(CBPeripheral*)periperal{
 if(value!=nil&&periperal!=nil&&self.sendclosecharater!=nil){
  [self writeData:value forCharacteristic:self.sendclosecharater periperalData:periperal];
 }
}

/*
 所有写入的数据处理
 */
-(void)writeData:(NSString *)value forCharacteristic:(CBCharacteristic *)characteristic periperalData:(CBPeripheral*)periperal{
 NSData *data = [value dataUsingEncoding:NSUTF8StringEncoding];
 if(characteristic.properties & CBCharacteristicPropertyWriteWithoutResponse)
 {
  [periperal writeValue:data forCharacteristic:characteristic type:CBCharacteristicWriteWithoutResponse];
 }else
 {
  [periperal writeValue:data forCharacteristic:characteristic type:CBCharacteristicWriteWithResponse];
 }
}

此篇文章阐述到这,基本BLE蓝牙开发实现都详细的描述了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • iOS蓝牙开发 蓝牙连接和数据读写

    在做蓝牙开发之前,最好先了解一些概念: 服务(services):蓝牙外设对外广播的必定会有一个服务,可能也有多个,服务下面包含着一些特征,服务可以理解成一个模块的窗口: 特征(characteristic):存在于服务下面的,一个服务下面也可以存在多个特征,特征可以理解成具体实现功能的窗口,一般特征都会有value,也就是特征值,特征是与外界交互的最小单位: UUID:可以理解成蓝牙上的唯一标识符(硬件上肯定不是这个意思,但是这样理解便于我们开发),为了区分不同的服务和特征,或者给服务和特征取

  • iOS蓝牙开发数据实时传输

    随着iOS项目开发  很多app需要通过蓝牙与设备连接 蓝牙开发注意: 先定义中心设备和外围设备以及遵守蓝牙协议 @interface ViewController()<CBCentralManagerDelegate,CBPeripheralDelegate> @property (strong, nonatomic) CBCentralManager *manager; @property (nonatomic, strong) CBPeripheral *peripheral; @pro

  • IOS Ble蓝牙开发实现方法

    本篇博文阐述如何开发Ble蓝牙.在蓝牙中的一些常见服务,扫描,以及链接: 主蓝牙类文件.h 主蓝牙类文件.m UUID文件 蓝牙列表展示的文件 一:引入Ble蓝牙的框架<CoreBluetooth/CoreBluetooth.h> BuleHelp.h #import <Foundation/Foundation.h> //导入蓝牙框架 #import <CoreBluetooth/CoreBluetooth.h> #import "DeviceModel.h

  • Android BLE 蓝牙开发之实现扫码枪基于BLESSED开发

    目录 一.蓝牙模式HID与BLE 二.BLE协议白话 三.第三方库 BLESSED for Android的使用 一.蓝牙模式HID与BLE 当扫码枪与手机连接时,通常采用的是蓝牙HID(Human Interface Device)模式.本质上是一个把扫码枪作为一个硬件键盘,按照键盘协议把扫码后的结果逐个输入到对应的控件上. 优点:无需开发集成,配对就可以立即作为键盘输入使用.可以使用输入框等组件直接接收扫码结果. 缺点:对非数字支持不佳,与输入法相关,在某些时候会触发英文联想-_-||,与虚

  • 源码解析ios开发SDWebImage方法

    目录 引言 源码解析 字典操作 看一下调用下载函数前的实例化过程 快速查找缓存的方法回调 开始进入查找函数 总结一下函数调用 1.先调用 2.设置图片 引言 在着手写第二篇的时候,发现这个SDWebimage确实吧NSOperation用的太美了.确实可能帮你理解NSOperation和NSOperationQueue,当然还有Block的队列.还有一个GCD. 各位看官在看的时候可以着重的看看他的operatinQueue的队列.看看是怎么添加到队列的以及是怎么移除队列.在后面的文章就会提到他

  • iOS抽屉效果开发案例分享

    本文实例为大家分享了iOS抽屉效果开发实例,供大家参考,具体内容如下 在显示在窗口的控制器上添加三个view(如果只需要往一边滑动就只加2个view) 先声明三个view #import "ViewController.h" @interface ViewController () @property(nonatomic, weak) UIView *mainV; @property(nonatomic, weak) UIView *leftV; @property(nonatomic

  • Android 蓝牙开发实例解析

    在使用手机时,蓝牙通信给我们带来很多方便.那么在Android手机中怎样进行蓝牙开发呢?本文以实例的方式讲解Android蓝牙开发的知识.        1.使用蓝牙的响应权限 XML/HTML代码 <uses-permission android:name="android.permission.BLUETOOTH"/> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN&qu

  • Android中仿IOS提示框的实现方法

    前言 在Android开发中,我们有时需要实现类似IOS的对话框.今天我就来总结下,如何通过自定义的开发来实现类似的功能. 自定义Dialog 我们知道Android中最常用的对话框就是Dialog及其派生类.这次我们通过组合的方式来实现一个类似IOS对话框的效果.我们先来看一下布局效果,这个相信大家都能弄出来,在这里我就贴一下最后的效果图(注意:对话框的边缘是圆角的). 效果图如下: 我们看到,这个和IOS的对话框已经非常相似了,后面我们需要做的就是将其作为一个组件封装起来,实现AlertDi

  • iOS 原生sqlite3的使用方法

    本文介绍了iOS 原生sqlite3的使用方法,分享给大家,具体如下: SQLite? SQLit是一个开源.轻型嵌入式关系数据库,诞生于2000年5月 占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了 能够支持Windows/Linux/Unix等等主流的操作系统 比起Mysql.PostgreSQL这两款开源的世界著名数据库管理系统来讲,它的处理速度比他们都快  SQL语句常用操作 增.删.改.查,CRUD,Create[新建], Retrieve[检索], Update[更新

  • iOS测试手机APP的方法汇总:真机运行,打ipa包,testFlighe,蒲公英

    目录 一.真机运行 二.打.ipa包测试 三.通过testFlight添加测试员 四.蒲公英测试 Android APP 的测试开发直接打包一个 apk 包发送给测试,测试可以安装到任何 Android 设备开始测试工作:但是 iOS 不可以,想要在 iOS 系统里安装 APP,必须要得到苹果的授权.iOS 因为苹果系统的私密性,导致 iOS 测试的教程相对来说少很多. 通常测试手机APP的四种方法:真机运行,打ipa包,(testFlighe)邮件,蒲公英测试. 一.真机运行 用数据线真机调试

随机推荐