Frida Docs Unified
    Preparing search index...

    Dynamically generated wrapper for any Objective-C instance, class, or meta-class.

    Implements

    Indexable

    • [name: string]: any
    Index

    Constructors

    Properties

    $class: default.Object

    Class that this object is an instance of.

    $className: string

    Class name of this object.

    $ivars: { [name: string]: any }

    Instance variables on this object. Supports both access and assignment.

    $kind: ObjectKind

    Whether this is an instance, class, or meta-class.

    $methods: string[]

    Native method names exposed by this object’s class and parent classes.

    $moduleName: string

    Name of module where this object is implemented.

    $ownMethods: string[]

    Native method names exposed by this object’s class, not including parent classes.

    $protocols: { [name: string]: Protocol }

    Protocols that this object conforms to.

    $super: default.Object

    Instance used for chaining up to super-class method implementations. null for root classes such as NSObject.

    $superClass: default.Object

    Super-class of this object's class. null for root classes such as NSObject.

    Methods