Change the font of a UIBarButtonItem

前端 未结 16 1104
春和景丽
春和景丽 2020-12-07 09:18

\"UIToolbar

I have a UIBarButtonItem in my UIToolbar titled

16条回答
  •  温柔的废话
    2020-12-07 09:43

    For completion I would like to add this method, still used in Objective-C in 2019. :)

    _titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
    _titleLabel.text = _titleBarButtonItem.title;
    _titleLabel.textColor = UIColor.whiteColor;
    _titleLabel.font = [UtilityMethods appFontProDisplayBold:26.0];
    
    [_titleLabel sizeToFit];
    UIBarButtonItem *titleLabelItem = [[UIBarButtonItem alloc] initWithCustomView:_titleLabel];
    

提交回复
热议问题