You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using BetterSegmentedControl in Storyboard as a custom view with indicatorViewBackgroundColor as blue. I made an extension to make segments just from Stroryboard input box:
extension BetterSegmentedControl {
@IBInspectable var titles: String? {
get {
....
}
set (value) {
// make array of string from value by components(separatedBy: "\n")
// then make an array of LabelSegment with custom normalTextColor (gray) and selectedTextColor (white)
}
}
The problem: in run-time the normal title text is blue (as indicatorViewBackgroundColor that I set in Storyboard).
Any suggestion?
Thank you.
The text was updated successfully, but these errors were encountered:
Hi,
I'm using BetterSegmentedControl in Storyboard as a custom view with
indicatorViewBackgroundColor
as blue. I made an extension to make segments just from Stroryboard input box:The problem: in run-time the normal title text is blue (as
indicatorViewBackgroundColor
that I set in Storyboard).Any suggestion?
Thank you.
The text was updated successfully, but these errors were encountered: