class func appleEvent (withEventClass : AEEventClass, eventID : AEEventID, targetDescriptor : NSAppleEventDescriptor?, returnID : AEReturnID, transactionID : AETransactionID) -> NSAppleEventDescriptor
Creates a descriptor that represents an Apple event, initialized according to the specified information.
あるアップルイベントを表す記述子を作成します、指定の情報に従って初期化されます。
init(boolean: Bool)
Creates a descriptor initialized with type
typeBoolean
that stores the specified Boolean value.
型typeBoolean
で初期化される記述子を作成します、それは措定されたブール値を格納します。
init(enumCode : OSType)
Creates a descriptor initialized with type
typeEnumerated
that stores the specified enumerator data type value.
型typeEnumerated
で初期化される記述子を作成します、それは指定された列挙子データ型値を格納します。
init(int32: Int32)
Creates a descriptor initialized with Apple event type
typeSInt32
that stores the specified integer value.
アップルイベント型typeSInt32
で初期化される記述子を作成します、それは指定された整数値を格納します。
init(string: String)
Creates a descriptor initialized with type
typeUnicodeText
that stores the text from the specified string.
typeUnicodeText
型で初期化される記述子を作成します、それは指定された文字列からのテキストを格納します。
init(typeCode : OSType)
Creates a descriptor initialized with type
typeType
that stores the specified type value.
typeType
型で初期化される記述子を作成します、それは指定された型値を格納します。
class func list() -> NSAppleEventDescriptor
Creates and initializes an empty list descriptor.
空のリスト記述子を作成して初期化します。
class func null() -> NSAppleEventDescriptor
Creates and initializes a descriptor with no parameter or attribute values set.
パラメータまたは属性値が設定されない記述子を作成して初期化します。
class func record() -> NSAppleEventDescriptor
Creates and initializes a descriptor for an Apple event record whose data has yet to be set.
あるアップルイベントレコードに対する記述子を作成して初期化します、それのデータはまだ設定されません。
init(listDescriptor : ())
Initializes a newly allocated instance as an empty list descriptor.
新たに割り当てされたインスタンスを空のリスト記述子として初期化します。
init(recordDescriptor : ())
Initializes a newly allocated instance as a descriptor that is an Apple event record.
新たに割り当てされたインスタンスをアップルイベントレコードである記述子として初期化します。
init?(descriptorType : DescType, bytes: UnsafeRawPointer?, length: Int)
Initializes a newly allocated instance as a descriptor with the specified descriptor type and data (from an arbitrary sequence of bytes and a length count).
新たに割り当てされたインスタンスを指定された記述子型とデータ(随意のバイトシーケンスと長さ合計から)を伴う記述子として初期化します。
init?(descriptorType : DescType, data: Data?)
Initializes a newly allocated instance as a descriptor with the specified descriptor type and data (from an instance of
NSData
).
新たに割り当てされたインスタンスを指定された記述子型とデータ(NSData
のインスタンスから)を伴う記述子として初期化します。
init(eventClass : AEEventClass, eventID : AEEventID, targetDescriptor : NSAppleEventDescriptor?, returnID : AEReturnID, transactionID : AETransactionID)
Initializes a newly allocated instance as a descriptor for an Apple event, initialized with the specified values.
新たに割り当てされたインスタンスをあるアップルイベントに対する記述子として初期化します、指定された値で初期化されます。