Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要根据我手中的货币代码在表格视图中显示不同的货币符号。
是否可以使用相应货币的货币代码或 unicode 字符来显示这样的内容。
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier: @"en_US"]; NSString *dollar = [locale displayNameForKey:NSLocaleCurrencySymbol value:@"USD"]; NSLog(@"%@",dollar); [locale release];