macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

descriptionWithLocale:

INDEX>Foundation>NSSet

セットをローカライズして返します
-(NSString *)descriptionWithLocale:(id)locale

解説

セットをローカライズして返します。

返り値

( NSString * )

内容の文字列

引数

(id)

ロケール
NSDictionaryまたはNSLocale
iOSとOS X10.5以降ではNSDictionaryまたはNSLocale。
OS X10.4以前ではNSDictionaryのみ(NSLocaleが使えないので)

クラス

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