• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: how to write programatically greek letters to an NSTextField?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: how to write programatically greek letters to an NSTextField?


  • Subject: Re: how to write programatically greek letters to an NSTextField?
  • From: Clark Cox <email@hidden>
  • Date: Wed, 22 Dec 2004 15:17:00 -0500

On Wed, 22 Dec 2004 13:17:00 +0100, Nestor Cardozo <email@hidden> wrote:
> I am trying to write programatically a combination of greek and latin
> characters to an NSTextField:
>
> [theNSTextField setStringValue:@"σxx"]

One cannot use non-ASCII characters in @"foo" string literals. You
have several options:
1) Use NSLocalizedString to load your Unicode string from a .strings file
2) Explicitly use character values in the source code:
NSString *myString = [NSString stringWithUTF8String: "\xCF\x83xx"];

or:

const unichar myCharacters[] = {0x03C3,'x','x'};
NSString *myString = [NSString stringWithCharacters: myCharacters
length: sizeof myCharacters / sizeof *myCharacters];

or:

NSString *myString = [NSString stringWithFormat: @"%Cxx", 0x03C3];


--
Clark S. Cox III
email@hidden
http://www.livejournal.com/users/clarkcox3/
http://homepage.mac.com/clarkcox3/
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: how to write programatically greek letters to an NSTextField?
      • From: The Karl Adam <email@hidden>
References: 
 >how to write programatically greek letters to an NSTextField? (From: Nestor Cardozo <email@hidden>)

  • Prev by Date: Re: iCal Alarms
  • Next by Date: Re: how to write programatically greek letters to an NSTextField?
  • Previous by thread: Re: how to write programatically greek letters to an NSTextField?
  • Next by thread: Re: how to write programatically greek letters to an NSTextField?
  • Index(es):
    • Date
    • Thread