Making a Text View bulleted in Xcode with Objective C

1.1k Views Asked by At

I am trying to make a text view that is strictly bulleted. So when you start typing it makes a bullet. When you hit enter it will make a bullet. I found some code that will make a bulleted list but it only writes some text into the text view initially:

myTextView.text = @"\u2022"; 

And this is a text view not a text field (dont think that makes a difference) and it is for ios but does anybody know how you would do this?

1

There are 1 best solutions below

2
On BEST ANSWER

This textView delegate is your friend:

  • (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text

So what happens is as people enter text, you get this delegate method, and you can see the text that WILL be added if you return YES. Now you cannot change the replacement text, but what you can do is ask the UITextView for all the current text, modify it as you wish, then return NO.