美文网首页
iOS 更改UIlabel行间距

iOS 更改UIlabel行间距

作者: 孟小于max | 来源:发表于2019-03-25 15:45 被阅读0次
            let paragraphStyle = NSMutableParagraphStyle()
            paragraphStyle.lineSpacing = 5//此处为设置行间距为5
            paragraphStyle.lineBreakMode = .byCharWrapping
            let attributes = [
                NSAttributedStringKey.font:UIFont.systemFont(ofSize: 13),
                NSAttributedStringKey.foregroundColor:UIColor().colorWithHexString(color: "666666"),
                NSAttributedStringKey.paragraphStyle: paragraphStyle
            ]

相关文章

网友评论

      本文标题:iOS 更改UIlabel行间距

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