C# 클래스 Monobjc.Tools.ObjectiveC.ObjCId

Simple wrapper for an Objective-C instsance.
파일 보기 프로젝트 열기: Monobjc/monobjc-tools 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Alloc() 공개 메소드

Allocs this instance.
public Alloc ( ) : ObjCId
리턴 ObjCId

Init() 공개 메소드

Inits this instance.
public Init ( ) : ObjCId
리턴 ObjCId

ObjCId() 공개 메소드

Initializes a new instance of the ObjCId class.
public ObjCId ( IntPtr pointer ) : System
pointer System.IntPtr The pointer.
리턴 System

Release() 공개 메소드

Releases this instance.
public Release ( ) : void
리턴 void

Selector() 공개 정적인 메소드

Get the select of the specified name.
public static Selector ( String name ) : IntPtr
name String The name.
리턴 System.IntPtr

SendMessage() 공개 메소드

Sends the message.
public SendMessage ( String selector ) : IntPtr
selector String The selector.
리턴 System.IntPtr

SendMessage() 공개 메소드

Sends the message.
public SendMessage ( String selector, IntPtr parameter1 ) : IntPtr
selector String The selector.
parameter1 System.IntPtr The first parameter.
리턴 System.IntPtr

SendMessage() 공개 메소드

Sends the message.
public SendMessage ( String selector, String parameter1 ) : IntPtr
selector String The selector.
parameter1 String The first parameter.
리턴 System.IntPtr