I got the following problem. I got an extension of UIView which contains a view for displaying a value (in this case a battery value of a paired BT device). I need to have this view in several viewcontroller while the value comes from one final class (which receives and handles the device values).
Is there any way to make this UIView "static" so that the DeviceClass changes the Value in the BatteryClass and this is changed in all childs of the BatteryClass? Or is there any other way to realize this better? I just dont want to code for every viewcontroller a new method to update the BatteryView.