菜鸟教程小白 发表于 2022-12-13 15:30:27

ios - iphone 4s可以连接两个蓝牙4.0设备吗?


                                            <p><p>我想知道iphone 4s可以连接两个蓝牙4.0设备吗?</p>

<p>我使用 Corebluetooth.framework 连接我的 bluetooth4.0 设备,现在我有疑问,如果我们有两个设备,我可以同时连接吗?</p>

<p>非常感谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的。 </p>

<p>例如,查看 Apple 的心率监测器示例,网址为 <a href="http://developer.apple.com/library/mac/#samplecode/HeartRateMonitor/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40011322" rel="noreferrer noopener nofollow">http://developer.apple.com/library/mac/#samplecode/HeartRateMonitor/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40011322</a> .在 HeartRateMonitorAppDelegate.m 中您会发现以下方法收集多个设备:</p>

<pre><code>- (void) centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)aPeripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{   
    NSMutableArray *peripherals = ;
    if( ! )
      ;

    /* Retreive already known devices */
    if(autoConnect)
    {
      ];
    }
}
</code></pre>

<p>在这个特定示例中,该应用仅与其中一个心率监测器连接,但您可以查看代码并轻松了解它如何连接到两个(假设您愿意更新 UI 以显示两个心率) .</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iphone 4s可以连接两个蓝牙4.0设备吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11772746/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11772746/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iphone 4s可以连接两个蓝牙4.0设备吗?