macos – 列出Swift中蓝牙设备范围内的设备

前端之家收集整理的这篇文章主要介绍了macos – 列出Swift中蓝牙设备范围内的设备前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Xcode 6游乐场中有以下代码
import Cocoa
import IOBluetooth

class BlueDelegate : IOBluetoothDeviceInquiryDelegate {
    func deviceInquiryComplete(sender: IOBluetoothDeviceInquiry,error: IOReturn,aborted: Bool) {
        aborted
        var devices = sender.foundDevices()
        for device : AnyObject in devices {
            if let thingy = device as? IOBluetoothDevice {
                thingy.getAddress()
            }
        }
    }
}

var inquiry = IOBluetoothDeviceInquiry(delegate: BlueDelegate())
inquiry.start()

我刚刚开始使用OSX下的蓝牙,而我目前想要的只是范围内的设备列表.

它似乎根本没有调用我的委托方法.

我是OSX开发和Swift的新手,所以请保持温和. 原文链接:https://www.f2er.com/swift/319391.html

猜你在找的Swift相关文章