func string(from: [Any]) -> String?
class func localizedString (byJoining : [String]) -> String
Availability 有効性
Technology
func string(for obj: Any?) -> String
?
obj
An array of objects to format as a list. リストとして書式設定することになるオブジェクトいくつかからなるある配列。
A formatted string representing the list of objects in an array. Returns nil
if the formatter can’t generate a description for all objects in the array, or if obj
is nil
.
指定された時間情報を表している書式設定済み文字列。nil
を返します、もしフォーマッタが配列の中の全オブジェクトに対してある記述を生成できないならば、またはもしobj
がnil
ならば。
The list formatter uses item
to format each item in the array. If item
doesn’t apply to a particular item, the list formatter falls back to the item’s description(with
or localized
if implemented. If those methods aren’t implemented, the formatter uses description
instead.
リストフォーマッタは、item
を使って配列の中の各項目を書式設定します。item
がある特定の項目に適用しないならば、リストフォーマッタは項目のもつdescription(with
または localized
へとフォールバック(縮退)します、もし実装されるならば。それらメソッドが実装されないならば、フォーマッタはdescription
を代わりに使います。
func string(from: [Any]) -> String?
class func localizedString (byJoining : [String]) -> String