vote up 1 vote down star

Hi, Does any one know how to display the copyright icon in UILabel text? This is the icon with a circle around c. The html code for it is: © or ©.

I tried the following code:

UILabel *contactInfo = [[UILabel alloc] initWithFrame:CGRectMake(-55,135,420,100)];
contactInfo.text = @"'©):'2009 Nationwide ";

or

contactInfo.text = @"'©'2009 Nationwide ";

or

contactInfo.text = @"©2009 Nationwide ";

It just prints everything as text and no icon.

This would work in a webView but I need it as UILabel text. Any help?

flag

50% accept rate
the html code is '& copy' without space or '& #169;' – Neeraj Oct 23 at 16:57
Have you tried unicode? It's 169 – DroidIn.net Oct 23 at 16:59

5 Answers

vote up 2 vote down check

If your source files are in UTF-8, what they should be, this should work just fine. Otherwise you should use .strings-files in combination with the NSLocalizedString() macro and put your text into UTF-16 files.

Works for me: myUILabel.text = @"© by me";

© by me

Edit: Now that I see that you've tried to insert the symbol as HTML entity - this does not work, just insert the symbol as it appears.

link|flag
vote up 1 vote down

In interface builder try option and c together.

link|flag
vote up 1 vote down

Copy and paste the copyright symbol © directly into your source code.

link|flag
vote up 1 vote down

Another way to insert symbols without dealing with your source files' character encoding is to encode them as UTF-8 bytes using \x escapes.

According to Fileformat.info, the Copyright sign in UTF-8 bytes is 0xC2 0xA9.

So this works: @"\xC2\xA9 Nationwide"

That's how I do all of mine.

link|flag
vote up 0 vote down

It's usually not a great idea to put non-ASCII strings through the compiler. The UTF-8 approach is thus better, if unreadable. You could use

NSLocalizedString(@"copyright", @"");

and then a .strings file with

copyright = "©2009";

would be a lot easier to generalize to other non-ASCII strings.

(BTW, it's option + g, not option + c.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.