Calvin Chan
Calvin Chan

Reputation: 535

How to center align the text in UITextView after backspacing the first line?

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

Answers (1)

mvadim
mvadim

Reputation: 152

You can add UITextViewDelegate and implement method:

-(void)textViewDidChange:(UITextView *)textView
{
    textView.textAlignment = NSTextAlignmentCenter;
}

Upvotes: 2

Related Questions