+ isSupportedForLanguage:
+ requiredKeysForLanguage:
Availability 有効性
Technology
@interface NSMorphologyCustomPronoun : NSObject
Set a NSMorphology
instance on a NSMorphology
instance when you want to provide a langauge-specific customization of pronoun use in that language. Different languages have different requirements for the grammatical information needed to apply a custom pronoun, so you set custom pronoun behavior on a per-language basis.
異なる言語は、異なる要件を、あつらえの代名詞を適用するのに必要とされる文法的情報に対して持ちます、なのであなたはあつらえの代名詞挙動を言語毎基準で設定します。
The example below shows how to create English “ze” and “hir” custom pronouns: 以下の例は、どのように英語の “ze” および “hir” のあつらえ代名詞を作成するかを示します:
let ze = [[NSMorphologyCustomPronoun alloc] init];
ze.subjectForm = "ze";
ze.objectForm = "hir";
ze.possessiveForm = "hir";
ze.possessiveAdjectiveForm = "hir";
ze.reflexiveForm = "hirself";
NSMorphology
only supports third-person pronouns. Use this feature when your app needs to refer to third parties with a specific pronoun.
この機能を、あなたのアプリがサードパーティー(三人称?)を特定の代名詞で参照する必要がある時に使ってください。
+ isSupportedForLanguage:
+ requiredKeysForLanguage:
subjectForm
objectForm
possessiveForm
possessiveAdjectiveForm
reflexiveForm
- setCustomPronoun:forLanguage:error:
- customPronounForLanguage: