Frida Docs Unified
    Preparing search index...
    interface ObjectMethod {
        argumentTypes: string[];
        clone: (options: NativeFunctionOptions) => ObjectMethod;
        handle: NativePointer;
        implementation: NativePointer;
        returnType: string;
        selector: NativePointer;
        types: string;
        (...args: any[]): any;
    }

    Hierarchy (View Summary)

    • Parameters

      • ...args: any[]

      Returns any

    Index

    Properties

    argumentTypes: string[]

    Argument type names.

    clone: (options: NativeFunctionOptions) => ObjectMethod

    Makes a new method wrapper with custom NativeFunction options.

    Useful for e.g. setting traps: "all" to perform execution tracing in conjunction with Stalker.

    implementation: NativePointer

    Current implementation.

    You may replace it by assigning to this property. See ObjC.implement() for details.

    returnType: string

    Return type name.

    selector: NativePointer

    Objective-C selector. Use ObjC.selectorAsString() to convert it to a string.

    types: string

    Signature.