微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

外围没有连接 – 斯威夫特

在我的 Swift应用程序中,我有一个应该找到蓝牙设备并连接到它的视图.蓝牙设备已开机.我能够扫描并找到该设备,然后我调用功能连接到它,但我得不到任何反馈.我不确定为什么它无法连接.

didFailToConnectPeripheral或didConnectPeripheral都没有返回任何值.

我如何让它工作?

import UIKit
import CoreBluetooth

class ViewController: UIViewController,CBCentralManagerDelegate,CBPeripheralDelegate {

    var manager: CBCentralManager!


    override func viewDidLoad() {
        super.viewDidLoad()
        manager = CBCentralManager (delegate: self,queue: nil)
    }


    func centralManager(central: CBCentralManager,diddiscoverPeripheral peripheral: CBPeripheral,advertisementData: [String : AnyObject],RSSI: NSNumber) {

        print("Peripheral: \(peripheral)")

        manager.connectPeripheral(peripheral,options:nil)

        manager.stopScan()

    }



    func centralManager(central: CBCentralManager,didConnectPeripheral peripheral: CBPeripheral) {
        print("connected!")
    }

    func centralManager(central: CBCentralManager,diddisconnectPeripheral
        peripheral: CBPeripheral,error: NSError?) {
            print("disconnected!")
    }


    func centralManager(central: CBCentralManager,didFailToConnectPeripheral peripheral: CBPeripheral,error: NSError?) {
            print("Failed")
    }


    func centralManagerDidUpdateState(central: CBCentralManager) {
        print("Checking")
        switch(central.state)
        {
        case.Unsupported:
            print("BLE is not supported")
        case.Unauthorized:
            print("BLE is unauthorized")
        case.UnkNown:
            print("BLE is UnkNown")
        case.Resetting:
            print("BLE is Resetting")
        case.PoweredOff:
            print("BLE service is powered off")
        case.PoweredOn:
            print("BLE service is powered on")
            print("Start Scanning")
            manager.scanForperipheralsWithServices(nil,options: nil)
        default:
            print("default state")
        }
    }
}

解决方法

您需要保留您尝试连接的CBPeripheral对象,否则一旦委托方法diddiscoverPeripheral返回它就会被释放.

import UIKit
import CoreBluetooth

class ViewController: UIViewController,CBPeripheralDelegate {

    var manager: CBCentralManager!
    var connectingPeripheral: CBPeripheral?


    override func viewDidLoad() {
        super.viewDidLoad()
        manager = CBCentralManager (delegate: self,RSSI: NSNumber) {

        print("Peripheral: \(peripheral)")

        self.connectingPeripheral=peripheral    

        manager.connectPeripheral(peripheral,options:nil)

        manager.stopScan()
    }

...

}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐