Overview 概要
Foundation supports two approaches for data formatting: Foundationは、2つの取り組みをデータ書式設定に対してサポートします:
When working in Swift, use
formatted
methods directly on the types you want to format, optionally usingFormat
and its subtypes to customize formatter output. This approach supports dates, integers, floating-point numbers, measurements, sequences, and person name components. Foundation caches identically-configured formatter instances internally, allowing you to focus on your app’s formatting needs. Swiftにおいて作業する場合、Style formatted
メソッドをあなたが書式設定したい型の上で直接に使用します、随意にFormat
とそれの下位型を使ってフォーマッタ出力をカスタマイズしてください。この取り組みは、日付、整数、浮動小数点数、寸法、シーケンス、そして個人名構成要素をサポートします。Foundationは、同一的に構成設定されたフォーマッタインスタンスを内部的にキャッシュして、あなたをあなたのアプリのもつ書式設定需要に集中させます。Style In Objective-C, create instances of
Formatter
and its subtypes, and use thestring(for:)
method to convert objects to formatted strings.