Question

This question already has an answer here:

I have a UIButton which I've added in IB, however the view behind this button changes color and I need to switch the button's type between InfoDark and InfoLight. Bizarrely though, buttonType property is read only. So how can i switch between light and dark info buttons?

Was it helpful?

Solution

There's no way to change the .buttonType once it's set.

You can prepare two buttons, and hide one of them depending on the background color.

OTHER TIPS

You can't set buttonType readonly property, use below may help:

UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top