私は外部デバイスとのBluetooth接続が必要なアプリケーションに取り組んでおり、外部デバイスとの接続に成功しました。CoreBluetooth:CBPeripheralにはメンバーがありませんsetnotifyValue iOS 10.0
さて、
peripheral.setNotifyValue(true, forCharacteristic: characteristics[0])
、私は以下の行でエラーを取得していますCBPeripheralManagerデリゲート以下でiOSの10でエラーを発生させるとiOS 9.0
に完全にfunc peripheral(peripheral: CBPeripheral, didDiscoverCharacteristicsForService service: CBService, error: NSError?) {
if serviceCharacteristics.keys.contains(service.UUID) {
guard let characteristics = service.characteristics else { return }
peripheral.setNotifyValue(true, forCharacteristic: characteristics[0])
}
作業それはCBPeripheralがノーを持っていることを言いますメンバsetNotifyValue。理解できません。私はいくつかの回避策を行ったが、助けを得ていない。
ニース。引き分けが速くなる。 ;) – davidethell
私たちの答えはどれくらい似ていますか?我々は同様に有線の脳を持っていなければならない。 –
私は展開ターゲットを変更し、私のアプリを実行しようとすると、私は上記のエラーが発生している今、swift 2.3でコードをしました。私はデベロッパーメソッドで以下のコードを使用していました。{ } peripheral.setNotifyValue(true、特性:0) ]) } –