Hi,
I’m using the CoreAudioMBS class in various places in an application, and wondered if this is time/resources consuming (I’m calling methods around once per second, in one place).
My though is to have a property in the app class, which would be instantiated only once (at app start), so I don’t instantiate a new one each time I need to query some values (volume, mute state), but I don’t know whether it’s safe nor if the class uses internal caching.
On the other hand, I’m not sure if the current way (instantiating a new object each time) is unsafe.
Advices welcomes.