iOS蓝牙框架封装
app需要適配一款藍牙手環,做了簡單的調查,覺得CoreBluetooth.framework里邊的方法用起來并不是很順手,于是就自己稍微做了一下封裝。說白了就是添加一些代理還有把藍牙發送的數據加工成對象等。
下邊,就進行一些簡單的介紹:
首先,就是定義了兩個代理
ALBleConnectDelegate??- (void)didConnectedWithBleDevice:(ALDeviceInfo *)deviceInfo;?? //藍牙設備連接成功以后調用該代理方法。?? ALBleDataReceiveDelegate?- (void)receivedData:(ALDataInfo *)data; // 接收到數據- (void)receivedRealtimeData:(ALRealtimeDataInfo *)data; // 接收到實時數據主要的操作集中在ALBLEDeviceManager?中
// 獲取實例對象+ (instancetype)defaultLsBleManager;// 藍牙狀態檢測-(void)checkBluetoothStatus:(void(^)(BOOL isOpenFlags))checkCompletion;// 根據指定條件搜索設備-(void)searchLsBleDevice:(BLEDeviceType)deviceType withTimer:(NSInteger)seconds searchCompletion:(SearchCompletion)completion;// 連接手環- (BOOL)connectWithBleDevice:(ALDeviceInfo *)alDeviceInfo;// 斷開手環- (void)disConnectWithBleDevice:(ALDeviceInfo *)alDeviceInfo;// 獲取已經連接的手環- (ALDeviceInfo *)getConnectedDeviceWithName:(NSString *)deviceName;// 開始接收數據- (void)startReceiveData:(ALDeviceInfo *)alDeviceInfo;// 開始接收實時數據- (void)startReceiveRealtimeData:(ALDeviceInfo *)alDeviceInfo;// 停止接收數據- (void)stopReceiveData;// 停止接收實時數據- (void)stopReceiveRealtimeData:(ALDeviceInfo *)alDeviceInfo;其實,分享這份代碼,只是想分享一個思路,希望對大家有幫助。
代碼地址:https://github.com/taowang501/ALBLEFramework.git
以上。?
轉載于:https://www.cnblogs.com/zpz501/p/5044598.html
總結
- 上一篇: hihocoder 1061.Beaut
- 下一篇: oracle得到日期对应的星期