Type Method 型メソッド

localizedStringFromPersonNameComponents:style:options:

Returns a string formatted for a given NSPersonNameComponents object using the provided style and options. 与えられたNSPersonNameComponentsオブジェクトに対して書式設定される文字列を返します、提供されたスタイルとオブジェクトを使います。

Declaration 宣言

+ (NSString *)localizedStringFromPersonNameComponents:(NSPersonNameComponents *)components 
                                                style:(NSPersonNameComponentsFormatterStyle)nameFormatStyle 
                                              options:(NSPersonNameComponentsFormatterOptions)nameOptions;

Parameters パラメータ

components

The name components to be formatted. 書式設定されることになる名前構成要素。

nameFormatStyle

A format style for the name components. For possible values, see NSPersonNameComponentsFormatterStyle. 名前構成要素に対する書式設定スタイル。可能な値として、NSPersonNameComponentsFormatterStyleを見てください。

nameOptions

The formatting options for the name components. For possible values, see NSPersonNameComponentsFormatterOptions. 名前構成要素に対する書式設定オプション。可能な値として、NSPersonNameComponentsFormatterOptionsを見てください。

Return Value 戻り値

A formatted string representation of the given name components. 与えられた名前構成要素の書式設定された文字列表現。

Discussion 議論

This method is a convenience for formatting name components without creating an instance of NSPersonNameComponentsFormatter. For greater customizability, you can create an instance of NSPersonNameComponentsFormatter and use stringFromPersonNameComponents: instead. このメソッドは、名前構成要素をNSPersonNameComponentsFormatterのインスタンスを作成することなく書式設定することに対するある便宜です。より大きなカスタマイズ能力として、あなたはNSPersonNameComponentsFormatterのインスタンスを作成してstringFromPersonNameComponents:を代わりに使うことができます。

See Also 参照

Converting Between Person Name Components and Strings 個人名構成要素と文字列の間で変換する