我有一个textview,我希望它类似于iPhone Notes应用程序。当用户单击居中对齐按钮时,我只希望该行上的所有内容居中对齐。我有这段代码,但是当我使用它时,它将整个textview文本设置为居中对齐,我只希望我所在的行居中对齐:
RewriteRule
答案 0 :(得分:0)
您可以设置对齐对齐方式,然后设置文本书写方向。 喜欢它。
self.textView.textAlignment = .justified //set text alignment center and justified
self.textView.makeTextWritingDirectionRightToLeft(true)//if you want set writing direction right to left
self.textView.makeTextWritingDirectionLeftToRight(true)//if you want set writing direction left to right