BButton
BButton copied to clipboard
No "Disabled" State
When I set .enabled = NO
on a BButton, it no longer accepts touch events but it isn't obvious to the user that the button is disabled. I was imagining slightly greying out the current button color, similar to other controls.
Is this a bug or do we need to write it?
Try this: self.someButton.enabled = NO; self.someButton.userInteractionEnabled = NO; self.someButton.titleLabel.enabled = NO;
Disabled state of button should now also be visible to the user.