skip to Main Content

Xcode – Objective-C warning: Class 'ViewController' does not conform to protocol 'CBPeripheralManagerDelegate'

I'm trying to create an Obj-C, CoreBluetooth virtual peripheral app and get this warning. // // ViewController.h // sim_backend_empty3 // // #import <UIKit/UIKit.h> #import <CoreBluetooth/CoreBluetooth.h> @interface ViewController : UIViewController <CBPeripheralManagerDelegate> @property (nonatomic, strong) CBPeripheralManager *peripheralManager; @end // // ViewController.m //…

VIEW QUESTION
Back To Top
Search