|
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_classes2(*prefixes)
Yield all loaded ObjC classes with a name starting with one of the
given prefixes. |
|
|
|
get_classes_len()
Get the number of ObjC classes loaded (int ). |
|
|
|
|
|
get_classnameof(objc,
dflt=missing)
Get the name of the ObjC class of an object. |
|
|
|
|
|
get_ivar(objc,
name,
ctype=None)
Get the value of an instance variable (ivar). |
|
|
|
get_ivars4(clas,
*prefixes)
Yield all instance variables (ivar) of an ObjC class with a name
starting with one of the given prefixes. |
|
|
|
get_ivars_len(clas)
Get the number of instance variables (ivar) of an ObjC class
(int ). |
|
|
|
|
|
|
|
get_method(clas,
name)
Get a method of an ObjC class by name. |
|
|
|
get_methods4(clas,
*prefixes)
Yield all methods of an ObjC class with a name starting with one of
the given prefixes. |
|
|
|
get_properties4(clas_or_proto,
*prefixes)
Yield all properties of an ObjC class or protocol with a name
starting with one of the given prefixes. |
|
|
|
|
|
get_protocols2(clas,
*prefixes)
Yield all protocols of an ObjC class with a name starting with one of
the given prefixes. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|