Core Bluetooth across multiple view controllers

How do you work with Core Bluetooth across multiple view controllers? I currently have a table view that successfully scans for peripherals, but I would like to handle updated peripheral values in a seperate view controller.

Replies

Welcome to the "Sometime you need to store objects on you AppDelegate or in other more permanent places than in your view controllers" stage of software development. I hope the process for the exercise is self-evident from the exercise description.


Do you have any questions?

Turns out my misunderstanding was that I tried to connect to the peripheral in the last view controller while the CBCentralManager state powered off. I can still make it more permanent though without it being tied to view controllers, thanks for your response and mods are welcome to delete this thread.