Reputation: 535
I want the text centered all the time, but when I backspace all of the text on the first line, the text is no longer centered. Any solutions for this? please help...
I have uploaded it on youtube, please take a look
And this is my setting on UITextView
p.s. Actually I have tried do it with textView.attributedText, but no luck:(
Upvotes: 2
Views: 617
Reputation: 152
You can add UITextViewDelegate and implement method:
-(void)textViewDidChange:(UITextView *)textView
{
textView.textAlignment = NSTextAlignmentCenter;
}
Upvotes: 2