菜鸟教程小白 发表于 2022-12-13 05:48:14

ios - 使ios7 BLE外围设备在后台工作


                                            <p><p>我已阅读有关它的所有相关信息,但仍然无法让我的 iOS7 设备在后台像外围广告商一样工作。它在前台工作正常,但在后台我什至可以发现它。我在 plist 文件中添加了 <strong>App 使用 CoreBluetooth</strong> 共享数据。我读到进入后台后,它会将我的自定义 UUID 放入溢出数据中。我也试过这个(但没有运气)。 </p>

<pre><code>NSDictionary *advertisingData = @{
CBAdvertisementDataServiceUUIDsKey : @,
CBAdvertisementDataOverflowServiceUUIDsKey : @
};
;
</code></pre>

<p>在另一边的中央(MAC OS 应用程序),我只扫描我的:<strong>TRANSFER_SERVICE_UUID</strong> 服务。有什么我错过的东西我应该在中心侧额外实现吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>请注意 <code>startAdvertising:</code> 方法文档中的这一行:</p>

<blockquote>
<p>While an application is in the background, the local name will not be used and all service UUIDs will be placed in the <strong>&#34;overflow&#34; area</strong>. However, applications that have not specified the &#34;bluetooth-peripheral&#34; background mode will not be able to advertise anything while in the background.</p>
</blockquote>

<p>也就是说,后台外围设备会从广告中删除所有内容,<strong><em>非</em> iOS 应用程序</strong>只能检测到它的存在。 iOS 应用程序能够到达溢出区域,但 MacOS 应用程序不能。您需要在 MacOS 端关闭服务过滤才能检测到外设并连接到它以发现它是否具有搜索到的服务。</p>

<p>仅供引用,这种情况没有解决方法,它已在 Apple bluetooth-dev 邮件列表和许多 SO 问题中讨论过多次。</p>

<p>另请注意,<code>CBAdvertisementDataOverflowServiceUUIDsKey</code> 不是 <code>startAdvertising:</code> 的有效输入键。 <code>CBAdvertisementDataOverflowServiceUUIDsKey</code> 由 iOS 在 <code>didDiscoverPeripheral</code> 回调中返回,如果它在溢出区域中发现了某些东西。仅使用 <code>CBAdvertisementDataServiceUUIDsKey</code> 来定义广告服务列表。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使ios7 BLE外围设备在后台工作,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20915249/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20915249/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使ios7 BLE外围设备在后台工作