Frida Docs Unified
    Preparing search index...

    Variable classesConst

    classes: { [name: string]: default.Object }

    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.

    Type Declaration