var toManyRelationshipKeys : [String]
var toOneRelationshipKeys : [String]
Availability 有効性
Technology
The name of the inverse relationship from the relationship specified by relationship
.
relationship
によって指定される関係由来の逆関係の名前。
For a given key that defines the name of the relationship from the receiver’s class to another class, returns the name of the relationship from the other class to the receiver’s class. For example, suppose an Employee class has a relationship named department
to a Department class, and that Department has a relationship named employees
to Employee. The statement:
レシーバのクラスから別のクラスへのリレーションシップ(関係)の名前を定義する指定されたキーに対して、別のクラスからレシーバのクラスへのリレーションシップの名前を返します。例えば、Employeeクラスがdepartment
と名前を付けられる関係をDepartmentクラスに対して持つこと、そしてDepartmentはemployees
と名前を付けられる関係をEmployeeに対して持つことを仮定します。この平叙文:
returns the string employees
.
上記は文字列employees
を返します。
If you have an instance of the class the receiver describes, you can use the NSObject
instance method inverse(for
instead.
あなたがレシーバが記述するクラスのインスタンスを持つならば、あなたはNSObject
インスタンスメソッドinverse(for
を代わりに使うことができます。
var toManyRelationshipKeys : [String]
var toOneRelationshipKeys : [String]