I have a viewController that implements coreBluetooth on my objective c application. I initialize my CBCentralManager on a viewController, but I want reconnect and use didDiscoverPeripheral from another viewController and from APpDelegate.
If I use to init this code:
@property (strong,nonatomic) CBCentralManager *central;
...
self.central=[[CBCentralManager alloc] initWithDelegate:self queue:dispatch_get_global_queue(QOS_CLASS_BACKGROUND, 0)];
How can I use the coreBlueooth delegates function without need reset and initialize again the CBCentralManager?
Hope be clear.