Created
June 25, 2016 00:14
-
-
Save ryanjjones10/680aa2eac71353732f6d9c6f72e8b34b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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