我正在尝试使用文本对齐中心并证明
let style = NSMutableParagraphStyle()
style.lineSpacing = 10
let attributes = [NSParagraphStyleAttributeName : style]
self.descriptionTextView.attributedText = NSAttributedString(string: myString) , attributes:attributes)
self.descriptionTextView.font = UIFont(name: "Helvetica", size:17)
self.descriptionTextView.textAlignment = .Center
我想要.Center
和.Justify
在一起!
这样的事情:
有人可以为此提供一些代码吗?