C# Class Monobjc.Tools.ObjectiveC.ObjCId

Simple wrapper for an Objective-C instsance.
Afficher le fichier Open project: Monobjc/monobjc-tools Class Usage Examples

Méthodes publiques

Méthode Description
Alloc ( ) : ObjCId

Allocs this instance.

Init ( ) : ObjCId

Inits this instance.

ObjCId ( IntPtr pointer ) : System

Initializes a new instance of the ObjCId class.

Release ( ) : void

Releases this instance.

Selector ( String name ) : IntPtr

Get the select of the specified name.

SendMessage ( String selector ) : IntPtr

Sends the message.

SendMessage ( String selector, IntPtr parameter1 ) : IntPtr

Sends the message.

SendMessage ( String selector, String parameter1 ) : IntPtr

Sends the message.

Method Details

Alloc() public méthode

Allocs this instance.
public Alloc ( ) : ObjCId
Résultat ObjCId

Init() public méthode

Inits this instance.
public Init ( ) : ObjCId
Résultat ObjCId

ObjCId() public méthode

Initializes a new instance of the ObjCId class.
public ObjCId ( IntPtr pointer ) : System
pointer System.IntPtr The pointer.
Résultat System

Release() public méthode

Releases this instance.
public Release ( ) : void
Résultat void

Selector() public static méthode

Get the select of the specified name.
public static Selector ( String name ) : IntPtr
name String The name.
Résultat System.IntPtr

SendMessage() public méthode

Sends the message.
public SendMessage ( String selector ) : IntPtr
selector String The selector.
Résultat System.IntPtr

SendMessage() public méthode

Sends the message.
public SendMessage ( String selector, IntPtr parameter1 ) : IntPtr
selector String The selector.
parameter1 System.IntPtr The first parameter.
Résultat System.IntPtr

SendMessage() public méthode

Sends the message.
public SendMessage ( String selector, String parameter1 ) : IntPtr
selector String The selector.
parameter1 String The first parameter.
Résultat System.IntPtr