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

时间:2014-06-20 06:23:05

标签: macos bluetooth swift iobluetooth

我在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的新手,所以请保持温和。 :)

1 个答案:

答案 0 :(得分:7)

要告诉Playground您的代码在后台执行某些操作,您必须import XCPlayground并致电XCPSetExecutionShouldContinueIndefinitely()
这将使IOBluetoothDeviceInquiry保持在Playground中,并允许它在完成时调用委托方法。

import Cocoa
import IOBluetooth
import XCPlayground

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

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

虽然上述方法有效,但我发现为需要像异步代码,委托等概念的任务创建简单的传统测试项目更容易......