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.
手に持っている通貨コードに基づいて、テーブルビューにさまざまな通貨記号を表示する必要があります。
それぞれの通貨の通貨コードまたはユニコード文字を使用して、このように表示することは可能ですか.
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier: @"en_US"]; NSString *dollar = [locale displayNameForKey:NSLocaleCurrencySymbol value:@"USD"]; NSLog(@"%@",dollar); [locale release];