Swift 框架 BeaconMonitor
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: 跨平台
- 软件首页: https://github.com/sebk/BeaconMonitor
软件介绍
BeaconMonitor 是 Swift 框架用来监控和排列 iBeacons。
import BeaconMonitor
import CoreLocation
class ListenViewController: UIViewController {
var monitor: BeaconMonitor?
override func viewDidLoad() {
super.viewDidLoad()
monitor = BeaconMonitor(uuid: NSUUID(UUIDString: uuidTextfield.text!)!)
monitor!.delegate = self
monitor!.startListening()
}
}
extension ListenViewController: BeaconMonitorDelegate {
@objc func receivedAllBeacons(monitor: BeaconMonitor, beacons: [CLBeacon]) {
print("All Beacons: \(beacons)")
}
@objc func receivedMatchingBeacons(monitor: BeaconMonitor, beacons: [CLBeacon]) {
print("Matching Beacons: \(beacons)")
}
}How to Think Like a Computer Scientist: Learning with Python
Allen B. Downey、Jeffrey Elkner、Chris Meyers / Green Tea Press / 2002-1-4 / USD 24.95
""How to Think Like a Computer Scientist"" is an introduction to programming using Python, one of the best languages for beginners. This is a Free Book -- you can download it from thinkpython.com. But......一起来看看 《How to Think Like a Computer Scientist: Learning with Python》 这本书的介绍吧!
