I want to draw bullet in my table views cell.
I found one method for getting bullet is :
lbl.text = @"\u2022 Hey its bullet";
But it is giving small bullet.
So is there any other way to get bullet in my apps?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the bullet is small it’s because that the standard size for the font-family/font-size you are using.
You’d have to set the bullet font to a different font family or font size to increase it’s size.
I assume you’re using a default cell view. You could create a custom cell view and manually place a bullet in interface builder with a UILabel after it.