Type Method 型メソッド

localizedString(from:style:options:)

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

Declaration 宣言

class func localizedString(from components: PersonNameComponents, 
                     style nameFormatStyle: PersonNameComponentsFormatter.Style, 
                   options nameOptions: PersonNameComponentsFormatter.Options = []) -> String

Parameters パラメータ

components

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

nameFormatStyle

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

nameOptions

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

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 string(from:) instead. このメソッドは、名前構成要素をNSPersonNameComponentsFormatterのインスタンスを作成することなく書式設定することに対するある便宜です。より大きなカスタマイズ能力として、あなたはNSPersonNameComponentsFormatterのインスタンスを作成してstring(from:)を代わりに使うことができます。

See Also 参照

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