如何设置UITextView对齐以证明和居中?

时间:2016-09-21 13:07:55

标签: ios swift uitextview justify

我正在尝试使用文本对齐中心并证明

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在一起! 这样的事情:

enter image description here

有人可以为此提供一些代码吗?

0 个答案:

没有答案