- objc:classrecord
A record representing an Objective C class.
name Class name as a string. method-list List of instance methods. The format is ((NAME . SIGNATURE) ...), but may change in the future to a list of objc:method records. class-method-list List of class methods. super-class Superclass of this class (as an objc:class). meta-class Metaclass of this class (as an objc:class). ivar-list List of all instance variables in this class (as objc:raw-ivar records). ivars List of ivars in this class defined in Scheme (as objc:ivar records). all-ivars Aggregate list of objc:ivar records from the class hierarchy. A note on instance variables: the bridge generates objc:ivar records only for ivars defined in Scheme. However, objc:raw-ivar records are available for all instance variables. This API (ivar-list / ivars / all-ivars) is new and subject to change.