Reputation: 3024
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?
Upvotes: 2
Views: 2608
Reputation: 7733
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
lblCopyRight.text=@"\u00A9 2012 Anil"
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"
Upvotes: 3