NSDictionary *options = @{CBCentralManagerOptionShowPowerAlertKey:@NO};
CBCentralManager *cbCentralMgr = [[CBCentralManager alloc] initWithDelegate:self queue:nil options:options];
一旦配对完之后 走的协议都不一样 在ios9 中 走 这个方法 :
NSArray * arry = [_centralManager retrieveConnectedPeripheralsWithServices:@[[CBUUID UUIDWithString:BT_SERVICE_UUID],[CBUUID UUIDWithString:@"1802"]]];
在ios9以下的版本如下方法:
- (void)centralManager:(CBCentralManager *)central didRetrieveConnectedPeripherals:(NSArray *)peripherals
断开连接是因为你没有输入密码连接不上。。 希望能帮到楼主
参考链接:http://stackoverflow.com/a/4080720
iOS app首次运行时,如果使用了某些敏感功能(比如访问相册、发送推送等),系统会弹出一个提示框,询问用户是否允许。用户一旦选择了允许或者不允许,之后似乎就没有后悔药吃了,因为即使你重装app,这个框也不会再弹出。
那正确的做法是什么呢?
1.删除该app
2.一天之后再次安装该app,此时又会弹出提示框了。
如果你是一个开发者,等一天绝对不是一个好策略 :( 下面的技巧在iOS 7上测试通过:
Delete your app from the device.
Turn the device off completely and turn it back on.
Go to Settings > General > Date & Time and set the date ahead a day or more.
Turn the device off completely again and turn it back on.
够浅显直白的,不用俺翻译了吧 ;)
网友评论