Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ryanjjones10/680aa2eac71353732f6d9c6f72e8b34b to your computer and use it in GitHub Desktop.

Select an option

Save ryanjjones10/680aa2eac71353732f6d9c6f72e8b34b to your computer and use it in GitHub Desktop.
import CoreBluetooth
import UIKit
class ViewController: UIViewController, CBCentralManagerDelegate, CBPeripheralDelegate {
var centralManager: CBCentralManager!
var peripheral: CBPeripheral!
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment