我想知道iphone 4s可以连接两个蓝牙4.0设备吗?
我使用 Corebluetooth.framework 连接我的 bluetooth4.0 设备,现在我有疑问,如果我们有两个设备,我可以同时连接吗?
非常感谢!
Best Answer-推荐答案 strong>
是的。
例如,查看 Apple 的心率监测器示例,网址为 http://developer.apple.com/library/mac/#samplecode/HeartRateMonitor/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40011322 .在 HeartRateMonitorAppDelegate.m 中您会发现以下方法收集多个设备:
- (void) centralManagerCBCentralManager *)central didDiscoverPeripheralCBPeripheral *)aPeripheral advertisementDataNSDictionary *)advertisementData RSSINSNumber *)RSSI
{
NSMutableArray *peripherals = [self mutableArrayValueForKey"heartRateMonitors"];
if( ![self.heartRateMonitors containsObject:aPeripheral] )
[peripherals addObject:aPeripheral];
/* Retreive already known devices */
if(autoConnect)
{
[manager retrievePeripherals:[NSArray arrayWithObjectid)aPeripheral.UUID]];
}
}
在这个特定示例中,该应用仅与其中一个心率监测器连接,但您可以查看代码并轻松了解它如何连接到两个(假设您愿意更新 UI 以显示两个心率) .
关于ios - iphone 4s可以连接两个蓝牙4.0设备吗?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11772746/
|