美文网首页
设置字体颜色

设置字体颜色

作者: 袏扌戒指 | 来源:发表于2016-01-12 10:38 被阅读2976次

    - (void)setButtonColor:(NSButton*)button andColor:(NSColor*)color {

    if(color ==nil) {

    color = [NSColor redColor];

    }

    NSFont *font = button.font;

    NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:font,

    NSFontAttributeName,

    color,

    NSForegroundColorAttributeName,

    nil];

    NSAttributedString* attributedString = [[NSAttributedString alloc] initWithString:[button title] attributes:attrs];

    [button setAttributedTitle:attributedString];

    }

    相关文章

      网友评论

          本文标题:设置字体颜色

          本文链接:https://www.haomeiwen.com/subject/vsxckttx.html