Instance Method
インスタンスメソッド
newScriptingObjectOfClass:forValueForKey:withContentsValue:properties:
Creates and returns an instance of a scriptable class, setting its contents and properties, for insertion into the relationship identified by the key.
スクリプト対応クラスのインスタンスを作成して返します、それの内容とプロパティを設定します、キーによって識別されるリレーションシップへの挿入のためです。
Declaration
宣言
- (id)newScriptingObjectOfClass:(Class)objectClass
forValueForKey:(NSString
*)key
withContentsValue:(id)contentsValue
properties:(NSDictionary
<NSString
*,id> *)properties;
Parameters
パラメータ
class
The class of the scriptable object to be created.
作成されることになるスクリプト対応オブジェクトのクラス。
key
A key that identifies the relationship into which the new class object will be inserted.
そこにおいて新しいオブジェクトが挿入されることになるリレーションシップを識別するキー。
contentsValue
Specifies the contents of the object to be created.
作成されるオブジェクトの内容を指定します。
This may be nil
. (See also the Discussion section.)
(またDiscussion節を見てください。)
properties
The properties to be set in the new object. (See also the Discussion section.)
新しいオブジェクトにおいて設定されるプロパティ。(またDiscussion節を見てください。)
Return Value
戻り値
The new object.
新しいオブジェクト。
Returns nil
if an error occurs.
Discussion
解説
You can override the newScriptingObjectOfClass
method to take more control when your application is sent a make
command. This method is invoked on the prospective container of the new object.
このメソッドは、新しいオブジェクトの予想されるコンテナ上で発動されます。
The contentsValue
and properties
are derived from the with contents
and with properties
parameters of the make
command. The returned objects or objects are then inserted into the container using key-value coding.
返されるオブジェクトまたは複数のオブジェクトは、それから「キー値」コーディングを使ってコンテナへと挿入されます。
When this method is invoked by Cocoa, neither the contents value nor the properties will have yet been coerced using the NSScriptKeyValueCoding
method coerceValue:forKey:
. For sdef-declared scriptability, however, the types of the passed-in objects reliably match the relevant sdef declarations.
sdefで宣言されるスクリプト対応機能情報にとっては、しかしながら、渡されたオブジェクトの型は期待通りに関係するsdef宣言部分と一致します。
The default implementation of this method creates new scripting objects by sending alloc
to a class and init
to the resulting object. You override this method for situations where this is not sufficient, such as in Core Data applications, in which new objects must be initialized with [NSManagedObject initWithEntity:insertIntoManagedObjectContext:]
.
See Also
参照
Scripting
スクリプトを書く
classCode
The receiver's Apple event type code, as stored in the NSScriptClassDescription
object for the object’s class.
className
A string containing the name of the class.
クラスの名前を格納している文字列。
- copyScriptingValue:forKey:withProperties:
Creates and returns one or more scripting objects to be inserted into the specified relationship by copying the passed-in value and setting the properties in the copied object or objects.
指定されたリレーションシップへと挿入されるひとつ以上のスクリプティングオブジェクトを作成して返します、それは渡された値をコピーしてコビーされたオブジェクトまたは複数オブジェクトにおいてプロパティを設定することによってです。
- scriptingValueForSpecifier:
Given an object specifier, returns the specified object or objects in the receiving container.
あるオブジェクト指定子を与えられて、受け取っているコンテナの中の指定されたオブジェクトまたは複数のオブジェクトを返します。