|
ObjC_t
Base type to pretty-print ctypes c_void_p .
|
|
ObjCBase
Base class for Python runtime.ObjC... classes.
|
|
ObjCBoundMethod
Python wrapper for an ObjC class or instance method, an IMP_t.
|
|
ObjCBoundClassMethod
Only to distinguish bound class- from bound instance-methods.
|
|
ObjCClass
Python wrapper for an ObjC class.
|
|
ObjCInstance
Python wrapper for an ObjC instance.
|
|
ObjCMethod
Python class representing an unbound ObjC class- or instance-method
(actually an IMP_t).
|
|
ObjCClassMethod
Only to distinguish class methods from instance methods.
|
|
ObjCSubclass
Python class creating an ObjC sub-class of an existing ObjC
(super-)class.
|
|
add_ivar(clas,
name,
ctype)
Add an instance variable to an ObjC class, |
|
|
|
add_method(clas,
name_,
method,
encoding)
Add a method to an ObjC class. |
|
|
|
add_protocol(clas,
protocol)
Add a protocol to an ObjC class. |
|
|
|
add_subclass(superclas,
name,
register=False)
Create a new sub-class of the given super-class. |
|
|
|
isClass(obj)
Check whether an object is an ObjC clas. |
|
|
|
isImmutable(obj,
mutableClass,
immutableClass,
name=' ns ' )
Check that an Obj object is an instance of the immutable class. |
|
|
|
isInstanceOf(obj,
*Classes,
**name_missing)
Check whether an ObjC object is an instance of some ObjC class. |
|
|
|
isMetaClass(obj)
Check whether an object is an ObjC metaclass. |
|
|
|
|
|
send_message(receiver,
name_,
*args,
**resargtypes)
Send message to an ObjC object. |
|
|
|
send_super(receiver,
name_,
*args,
**resargtypes)
Send message to the super-class of an ObjC object. |
|
|
|
set_ivar(obj,
name,
value,
ctype=None)
Set an instance variable of an ObjC object. |
|
|
|
|