Is it possible to format the text in a UILabel to show a bullet point?
text
UILabel
If so, How can I do it?
Perhaps use the Unicode code point for the bullet character in your string?
Objective-c
myLabel.text = @"u2022 This is a list item!";
Swift 4
myLabel.text = "u{2022} This is a list item!"
2.1m questions
2.1m answers
60 comments
57.0k users