Hi, I have a UIToolbar at the bottom of my screen. The UIToolbar is made of UIBarButtonItems. At some point, I change the status of some buttons to hidden:
button.isHidden = true
This works: the buttons become invisible. At a later point in the process, I turn the buttons visible again:
button.isHidden = false
This did work on iOS 18, and does not work with the iOS 26 SDK: the buttons remain hidden, even though the property has been set to false.
Am I doing it wrong? Is there anything I can do to fix this?