UnderlineSegmentedControl

final class UnderlineSegmentedControl : UISegmentedControl
  • Declaration

    Swift

    override init(frame: CGRect)
  • Declaration

    Swift

    override init(items: [Any]?)
  • Declaration

    Swift

    required init?(coder: NSCoder)
  • Declaration

    Swift

    override func layoutSubviews()
  • normal, selected 일 때 color와 font 설정

    Declaration

    Swift

    func setAttributedTitle(
        _ normal: (UIColor?, UIFont) = (
            UIColor.gray2,
            CFont.font.regular17
        ),
        _ selected: (UIColor?, UIFont) = (
            UIColor.gray0,
            CFont.font.semibold17
        )
    )