Class

NSMorphologyCustomPronoun

A custom pronoun behavior for use in a specific langauge. 特定の言語において使うためのあるあつらえの代名詞挙動。

Declaration 宣言

@interface NSMorphologyCustomPronoun : NSObject

Overview 概要

Set a NSMorphologyCustomPronoun 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";

NSMorphologyCustomPronoun only supports third-person pronouns. Use this feature when your app needs to refer to third parties with a specific pronoun. この機能を、あなたのアプリがサードパーティー(三人称?)を特定の代名詞で参照する必要がある時に使ってください。

Topics 話題

Assessing Custom Pronoun Support カスタム代名詞サポートを見極める

Determining Pronoun Forms 代名詞形を決定する

Relationships 関係

Inherits From 継承元

Conforms To 次に準拠

See Also 参照

Accessing Per-Language Features 言語毎機能にアクセスする