セットをローカライズして返します
-(NSString *)descriptionWithLocale:(id)locale
解説
セットをローカライズして返します。
返り値
( NSString * )
内容の文字列
引数
(id)
ロケール
NSDictionaryまたはNSLocale
iOSとOS X10.5以降ではNSDictionaryまたはNSLocale。
OS X10.4以前ではNSDictionaryのみ(NSLocaleが使えないので)
フレームワーク
Foundation
クラス
NSSet
Instance Methods
使用可能
10.0
iOS2.0以降
参照
- description
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSDictionary *dic= [[NSDictionary alloc] initWithObjectsAndKeys: @"!",@"NSDecimalSeparator",//小数点区切り nil]; NSArray *arr = [NSArray arrayWithObjects: [NSNumber numberWithFloat:100.2345], [NSNumber numberWithInt:233], [NSNumber numberWithInt:332], nil]; NSSet *set = [NSSet setWithArray:arr]; NSLog([set descriptionWithLocale:dic]); } @end