Enumeration 列挙

NSFormattingContext

The formatting context for a formatter. あるフォーマッタのための書式設定文脈。

Declaration 宣言

typedef enum NSFormattingContext : NSInteger {
    ...
} NSFormattingContext;

Overview 概要

Use formatting contexts to specify where the result of formatting will appear, so that the formatter can provide the most appropriate result. 書式設定文脈を使って、書式設定の結果が現れるところを指定してください、それでフォーマッタが最も適切な結果を提供できるように。

For example, when formatting a date or date symbol for a French locale, you want the month name to be capitalized if it appears at the beginning of the sentence (“Juin est mon mois de naissance”), but not if it appears elsewhere (“Mon mois de naissance est juin”). 例えば、日付または日付表象をFrenchロケールに対して書式設定している場合、それが文の始まりで現れるならば、あなたはキャピタライズされる月名を望みます(“Juin est mon mois de naissance”)、しかしそれがどこか他に現れるならばそうではありません(“Mon mois de naissance est juin”)。

If the formatting context isn't known ahead of time, specify NSFormattingContextDynamic to have the system determine the context automatically. 書式設定文脈が事前に知られないならば、NSFormattingContextDynamicを指定して、システムに文脈を自動的に決定させるようにしてください。

Topics 話題

Constants 定数