I'd like to add a copyright symbol in part of a UITableView
footer. How do I place this symbol within a string in my application?
views:
76answers:
2
A:
http://blog.ablepear.com/2010/07/objective-c-tuesdays-unicode-string.html
Same approach as any other framework/programming language that doesn't have UTF source files.
Novikov
2010-08-27 19:03:32
Novikov..thanks for the reply..I will check the link
racharambola
2010-08-27 19:12:31
+3
A:
[NSString stringWithFormat:@"Copyright \u00A9 2010"]
This solved my problem
racharambola
2010-08-27 19:17:54