Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/118.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
自iOS9以来,DidDiscoveryPeripal返回的广告数据越来越少_Ios_Bluetooth_Ios9_Core Bluetooth_Ios Bluetooth - Fatal编程技术网

自iOS9以来,DidDiscoveryPeripal返回的广告数据越来越少

自iOS9以来,DidDiscoveryPeripal返回的广告数据越来越少,ios,bluetooth,ios9,core-bluetooth,ios-bluetooth,Ios,Bluetooth,Ios9,Core Bluetooth,Ios Bluetooth,这是一个核心蓝牙API问题。我注意到,自从iOS 9以来,我的应用程序得到的广告数据包要少得多。有人注意到这一点吗?如果有,这是iOS 9的bug/省电功能吗?如何解决这个问题,使其返回最多的广告数据包 这是我的密码。它应该扫描所有可删除的数据包。但是从代理返回的广告数据是iOS 9.0之前的1/2 NSDictionary *options = @{CBCentralManagerScanOptionAllowDuplicatesKey: @YES}; [self.centralManager

这是一个核心蓝牙API问题。我注意到,自从iOS 9以来,我的应用程序得到的广告数据包要少得多。有人注意到这一点吗?如果有,这是iOS 9的bug/省电功能吗?如何解决这个问题,使其返回最多的广告数据包

这是我的密码。它应该扫描所有可删除的数据包。但是从代理返回的广告数据是iOS 9.0之前的1/2

NSDictionary *options = @{CBCentralManagerScanOptionAllowDuplicatesKey: @YES};
[self.centralManager scanForPeripheralsWithServices:nil options:options];
谢谢