how can I add special characters in a UILabel in objective-c? Like I have to add “” in the title of navigation bar and tabbar. when I write it as it is then it shows me a square. Any idea?
Share
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.
This link contains character list with its unicode value which you have to use.For Eg.
If you want to create copyright C with encircle you have to use
Above will display copyright on the label.
If the above link will not contain your symbol then the only way for you is to create an image and set the property of imageview with this.
For your symbol use
lblRegister.text=@"\u00AE 2012"