I have a UITextView
, I need to add some text in "point form". Something like this:
- > text 1
- > text 2
- > text 3
- > text 4
My code:
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 320, 400)];
[self.view addSubView:textView];
If I have a string like text 1 text 2 text 3 text 4
, how can I display it in UITextView with those bullet signs?