views:

76

answers:

2

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?

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
Novikov..thanks for the reply..I will check the link
racharambola
+3  A: 
[NSString stringWithFormat:@"Copyright \u00A9 2010"]

This solved my problem

racharambola