如何在IOS7中获取连接蓝牙耳机按钮的操作? 我正在考虑使用corebluetooth.framework,但它只能用于BLE设备,而我知道有BLE耳机。 那么我可以使用任何其他方法来做到这一点吗?或者是否有任何其他框架可用于连接到非IOS设备? 感谢
答案 0 :(得分:1)
与耳机线相同。
接收控制事件后,请在正确的位置添加以下代码:
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
删除接收事件,在适当的位置添加以下代码:
[[UIApplication sharedApplication] endReceivingRemoteControlEvents];
RootViewController或刚刚接收事件的控制器应添加:
- (BOOL)canBecomeFirstResponder {
return YES;
}
以下代码是关于点击不同按钮的操作:
- (void)remoteControlReceivedWithEvent:(UIEvent *)event{
case UIEventSubtypeRemoteControlTogglePlayPause:
break;
case UIEventSubtypeRemoteControlPlay:
break;
case UIEventSubtypeRemoteControlPause:
break;
default:
break;
}
}
这是UIEventSubtype的定义
typedef NS_ENUM(NSInteger, UIEventSubtype) {
// available in iPhone OS 3.0
UIEventSubtypeNone = 0,
// for UIEventTypeMotion, available in iPhone OS 3.0
UIEventSubtypeMotionShake = 1,
// for UIEventTypeRemoteControl, available in iOS 4.0
UIEventSubtypeRemoteControlPlay = 100,
UIEventSubtypeRemoteControlPause = 101,
UIEventSubtypeRemoteControlStop = 102,
UIEventSubtypeRemoteControlTogglePlayPause = 103,
UIEventSubtypeRemoteControlNextTrack = 104,
UIEventSubtypeRemoteControlPreviousTrack = 105,
UIEventSubtypeRemoteControlBeginSeekingBackward = 106,
UIEventSubtypeRemoteControlEndSeekingBackward = 107,
UIEventSubtypeRemoteControlBeginSeekingForward = 108,
UIEventSubtypeRemoteControlEndSeekingForward = 109,
};
以下是Remote Control Events的链接。 希望能帮到你。
答案 1 :(得分:0)
在我的研究中,有人通过" remoteControlReceivedWithEvent"从他们的bleu-tooth设备接收了一些事件。但不是全部!有些人没有收到!很少有人收到所有这些!
我也尝试过Core Bluetooth,但它只支持LEB(低功耗蓝牙设备)! https://developer.apple.com/library/ios/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothOverview/CoreBluetoothOverview.html#//apple_ref/doc/uid/TP40013257-CH2-SW1
另外,有些帖子建议可以使用Classic bleutooth而不是" Low Energy": How to use bluetooth classic instead of le 但它也有限制(帖子正在拍摄" MFi配件"!MFi用于"用于iphone"?!?!?!)
从上面的帖子: "非LE蓝牙设备需要获得MFi认证才能与外部附件框架一起使用(它需要使用特定的Apple芯片和专有通信协议)。您无法构建应用程序来访问此设备,除非它使用更开放的蓝牙LE或将其中的芯片用于标准蓝牙。可能有办法通过越狱来做到这一点,但我认识的每个人都已经转移到蓝牙LE。" !
更多帖子: Connecting to a Bluetooth device from iOS, no MFi
问候。