How to manage NSArray, NSDictionary, ... description encoding for non ascii characters?

2009-08-17 Thread Gernot A . Pohl
--- #import int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSString *halo = @"Hello, Wörld!"; NSArray *array = [NSArray arrayWithObject:halo]; NSDictionary *dictionary = [NSDictionary dictionaryWithObject:halo forKe

Re: How to manage NSArray, NSDictionary, ... description encoding for non ascii characters?

2009-08-17 Thread Adam R. Maxwell
On Aug 17, 2009, at 9:46 AM, Gernot A.Pohl wrote: NSString *halo = @"Hello, Wörld!"; NSArray *array = [NSArray arrayWithObject:halo]; NSDictionary *dictionary = [NSDictionary dictionaryWithObject:halo forKey:@"halo"]; NSLog(@"%...@\narray=%@\ndictionary=%@", halo, arr