Penyelarasan teks UITEXTVIEW

Swift 5:
let textView = UITextView(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
let style = NSMutableParagraphStyle()
style.alignment = .center
let text = NSAttributedString(string: yourtextcontentstring,
                              attributes: [NSParagraphStyleAttributeName:style])
textView.attributedText = text
Wicked Wolf