Change the default color impossible
Senocico opened this issue · 3 comments
Senocico commented
I couldn't change the default gray color in any way.
Is there an option?
jaredmoskowitz commented
class CustomFaveButton: FaveButton {
override init(frame: CGRect) {
super.init(frame: frame)
self.normalColor = UIColor.white
}
}
Prosquid1 commented
Set isSelected
to false in your viewDidLoad or cellForItemAt.
The normalColor
you set on the storyboard will only take effect when toggled.
agrawalsuneet commented
I am facing the same problem. Both of the above solutions are not helping.