NSJSONReadingMutableContainers
NSJSONReadingMutableLeaves
NSJSONReadingFragmentsAllowed
NSJSONReadingJSON5Allowed
NSJSONReadingAllowFragments
Availability 有効性
Technology
NSJSONReadingTopLevelDictionaryAssumed = (1UL << 4)
This is an extension to JSON5 that isn’t part of the specification. Attributed
uses this option, along with NSJSONReading
, to support the use of JSON5 inside Markdown strings that use multiple custom attributes. Using NSJSONReading
allows for the following syntax in the parentheses of the custom attribute markup:
これは、JSON5に向けてのある拡張です、それは仕様の一部ではありません。Attributed
はこのオプションを、NSJSONReading
と一緒に使用することで、複数のあつらえの属性を使うMarkdown文字列内部でJSON5の使用をサポートします。NSJSONReading
は、あつらえの属性マークアップの丸括弧の中の以下の構文を考慮します:
Without NSJSONReading
, the markup would have to use explicit enclosing braces to declare the contents of the parentheses to be a dictionary:
NSJSONReading
なしでは、そのマークアップは、明示的な囲んでいる波括弧を使うことで、丸括弧の内容をある辞書であるように宣言しなければならないでしょう:
When you use braces, you must use matched pairs. This means that with NSJSONReading
set, the syntax ({…})
and (…)
are both legal, but ({…)
and (…})
are not.
あなたが波括弧を使う時、あなたは合致した対を使わなければなりません。これは、NSJSONReading
を設定した状態で、構文({…})
と(…)
は両方とも合法です、しかし({…)
と(…})
は違うことを意味します。
NSJSONReadingMutableContainers
NSJSONReadingMutableLeaves
NSJSONReadingFragmentsAllowed
NSJSONReadingJSON5Allowed
NSJSONReadingAllowFragments