Skip to content

Commit

Permalink
Expose titleView backgroundColor in order to customize it refs IOS-10720
Browse files Browse the repository at this point in the history
 (#410)
  • Loading branch information
cbarcom authored Nov 12, 2024
1 parent 6b17379 commit 2296d2f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Sources/Mistica/Components/Title/TitleHeaderFooterView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ public class TitleHeaderFooterView: UITableViewHeaderFooterView {
}
}

public var titleBackgroundColor: UIColor? {
get {
titleView.backgroundColor
}
set {
titleView.backgroundColor = newValue
}
}

override public init(reuseIdentifier: String?) {
super.init(reuseIdentifier: reuseIdentifier)

Expand Down

0 comments on commit 2296d2f

Please sign in to comment.