Inherits from NSObject
Declared in DixieMethodInfo.h
DixieMethodInfo.m

Overview

Describes a class and one of its method

Properties

isClassMethod

Indicates whether the method is a class method.

@property (readonly) BOOL isClassMethod

Discussion

Indicates whether the method is a class method.

Declared In

DixieMethodInfo.h

methodTypeEncoding

The string representation of the method encoding

@property (readonly) const char *methodTypeEncoding

Discussion

The string representation of the method encoding

Declared In

DixieMethodInfo.h

selector

Selector of the method.

@property (readonly) SEL selector

Discussion

Selector of the method.

Declared In

DixieMethodInfo.h

signature

Signature of the method.

@property (readonly) NSMethodSignature *signature

Discussion

Signature of the method.

Declared In

DixieMethodInfo.h

targetClass

Owner of the method.

@property (readonly) Class targetClass

Discussion

Owner of the method.

Declared In

DixieMethodInfo.h

Class Methods

infoWithClass:selector:

Creates a new MethodInfo instance.

+ (instancetype)infoWithClass:(id)targetClass selector:(id)selector

Parameters

targetClass

The owner of the method.

selector

The selector of the method.

Return Value

A MethodInfo instance.

Discussion

Creates a new MethodInfo instance.

Declared In

DixieMethodInfo.h