|
get_c_func_t(encoding,
codes=None)
Get the ctypes function type for a given function
signature. |
|
|
|
get_class(name)
Get a registered ObjC class by name. |
|
|
|
get_classes(*prefixes)
Yield all loaded ObjC classes with a name starting with one of the
given prefixes. |
|
|
|
get_classname(clas,
dflt=missing())
Get the name of an ObjC class. |
|
|
|
get_classnameof(obj,
dflt=missing())
Get the name of the ObjC class of an object. |
|
|
|
|
|
get_ivar(obj,
name,
ctype=None)
Get the value of an instance variable (ivar). |
|
|
|
get_ivars(clas,
*prefixes)
Yield all instance variables (ivar) of an ObjC class with a name
starting with one of the given prefixes. |
|
|
|
|
|
|
|
get_method(clas,
name)
Get a method of an ObjC class by name. |
|
|
|
get_methods(clas,
*prefixes)
Yield all methods of an ObjC class with a name starting with one of
the given prefixes. |
|
|
|
get_properties(clas_or_proto,
*prefixes)
Yield all properties of an ObjC class or protocol with a name
starting with one of the given prefixes. |
|
|
|
|
|
get_protocols(clas,
*prefixes)
Yield all protocols of an ObjC class with a name starting with one of
the given prefixes. |
|
|
|
|
|
|
|
|
|
|
|
|