我正在使用 BluetoothManager.framework
我有用于检测 iphone/ipad 蓝牙设备的示例示例。但是这个示例应用程序没有检测到我的设备。
以下是示例代码和网址的链接:
http://www.pocketmagic.net/2012/07/bluetooth-and-ios-use-bluetooth-in-your-iphone-apps/#.URnZy-hhNDQ
BluetoothManager *btManager;
- (IBAction)scanButtonAction
{
if ([btManager enabled])
{
// start scan
[btManager setDeviceScanningEnabled:YES];
}
else
{
showMessage(@"Error", @"Turn Bluetooth on first!");
}
}
- (IBAction)bluetoothON
{
NSLog(@"bluetoothON called.");
[btManager setPowered:YES];
[btManager setEnabled:YES];
}
- (IBAction)bluetoothOFF
{
NSLog(@"bluetoothOFF called.");
[btManager setEnabled:NO];
[btManager setPowered:NO];
}
任何检测蓝牙设备的建议或样本将不胜感激。