Const
Dynamically generated bindings for each of the currently registered classes.
You can interact with objects by using dot notation and replacing colons with underscores, i.e.:
[NSString stringWithString:@"Hello World"];
becomes:
const NSString = ObjC.classes.NSString; NSString.stringWithString_("Hello World");
Note the underscore after the method name.
Generated using TypeDoc
Dynamically generated bindings for each of the currently registered classes.
You can interact with objects by using dot notation and replacing colons with underscores, i.e.:
becomes:
Note the underscore after the method name.