美文网首页
iOS OC 设置字体下划线

iOS OC 设置字体下划线

作者: 清河湾 | 来源:发表于2016-07-14 17:06 被阅读166次

    //设置字体下划线

    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"查看所有中奖记录"];
    
    NSRange strRange = {0,[str length]};
    
    [str addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:strRange];
    
    [_perfectInfo setAttributedTitle:str forState:UIControlStateNormal];

    相关文章

      网友评论

          本文标题:iOS OC 设置字体下划线

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