Установить другой шрифт в соответствии с заголовком и субтитрами в UIlabel IBDesignable - PullRequest
0 голосов
/ 30 декабря 2018

Я создал пользовательский класс для uilabel с кодом ниже:

@IBDesignable
public class CustomUILabel: UILabel {

    public override func awakeFromNib() {
        super.awakeFromNib()
        configureLabel()
    }

    public override func prepareForInterfaceBuilder() {
        super.prepareForInterfaceBuilder()
        configureLabel()
    }

    func configureLabel() {
        textColor = .white
        font = UIFont(name: Constants.regularFontName, size: 14)
    }
}

Это помогло мне установить шрифт в приложении. Но я хотел создать другой жирный шрифт для заголовка и обычного шрифтадля субтитров.Это возможно только с одним файлом?Или мне нужно создать другое расширение для этого типа UIlabel

1 Ответ

0 голосов
/ 30 декабря 2018

Например, вы можете добавить собственное свойство style, например:

@IBDesignable
public class CustomUILabel: UILabel {

    enum CustomUILabelStyle {
        case title, subtitle

        var font: UIFont? {
            switch self {
            case .title:
                return UIFont(name: Constants.boldFontName, size: 14)
            case .subtitle:
                return UIFont(name: Constants.regularFontName, size: 14)
            }
        }

        var textColor: UIColor {
            switch self {
            // add cases if you want different colors for different styles
            default: return .white
            }
        }
    }

    var style: CustomUILabelStyle = .title {
        didSet {
            // update the label's properties after changing the style
            if style != oldValue {
                configureLabel()
            }
        }
    }

    public override func awakeFromNib() {
        super.awakeFromNib()
        configureLabel()
    }

    public override func prepareForInterfaceBuilder() {
        super.prepareForInterfaceBuilder()
        configureLabel()
    }

    func configureLabel() {
        font = style.font
        textColor = style.textColor
    }

}

. Вы можете использовать его так:

let label = CustomUILabel()
label.style = .title
// label.style = .subtitle
...