美文网首页
iOS 下划线不显示问题

iOS 下划线不显示问题

作者: ONE2 | 来源:发表于2022-03-30 22:46 被阅读0次
    NSMutableAttributedString *att = [[NSMutableAttributedString alloc] initWithString:@"如何快速收集"];
           [att addAttributes:@{NSForegroundColorAttributeName: UIColor.redColor,
                                NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle),
                                NSUnderlineColorAttributeName: UIColor.redColor,
                                NSBaselineOffsetAttributeName: @(5)}
                        range:NSMakeRange(0, att.string.length)];
           [feedback setAttributedTitle:att forState:UIControlStateNormal];
    
    

    要使用NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle)
    只使用NSUnderlineStylePatternSolid不显示...

    相关文章

      网友评论

          本文标题:iOS 下划线不显示问题

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