美文网首页
swift - 改变label字间距

swift - 改变label字间距

作者: _哈哈哈哈哈哈 | 来源:发表于2021-03-30 17:35 被阅读0次

  /// 快速改变字间距

    /// - Parameter space:

    funcchangeWordSpace(space:CGFloat) {

        guardlettext =self.textelse{return}

        letattributedString =NSMutableAttributedString.init(string: text)

        attributedString.addAttribute(NSAttributedString.Key.kern, value: space, range:NSRange(location:0, length: text.count))

        self.attributedText= attributedString

        self.sizeToFit()

    }

相关文章

网友评论

      本文标题:swift - 改变label字间距

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