FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
|
Class extensions. More...
#import <NSObject.h>
Class Methods | |
(NSString *) | + name |
Returns name of class. More... | |
(Method) | + methodValueForSelector: |
Returns Method from given selector;. More... | |
(NSAMethod *) | + methodObjectForSelector: |
Returns Method from given selector;. More... | |
(Method) | + classMethodValueForSelector: |
Returns class Method from given selector;. More... | |
(NSAMethod *) | + classMethodObjectForSelector: |
Returns class Method from given selector;. More... | |
(IMP) | + methodImplementationForSelector: |
Returns IMP from given method. More... | |
(void) | + addMethodForSelector:fromMethod: |
Adds a new method to a class with a given name and template method. More... | |
(void) | + addMethodForSelector:implementation:types: |
Adds a new method to a class with a given name and implementation. More... | |
(void) | + addClassMethodForSelector:fromMethod: |
Adds a new class method to a class with a given name and template method. More... | |
(void) | + addClassMethodForSelector:implementation:types: |
Adds a new class method to a class with a given name and implementation. More... | |
(NSString *) | + __deprecated |
Returns name of class. More... | |
Class extensions.
+ (NSString *) __deprecated |
Returns name of class.
+ (void) addClassMethodForSelector: | (SEL) | selector | |
fromMethod: | (NSAMethod *) | method | |
Adds a new class method to a class with a given name and template method.
+ (void) addClassMethodForSelector: | (SEL) | selector | |
implementation: | (IMP) | implementation | |
types: | (NSString *) | implementationTypes | |
Adds a new class method to a class with a given name and implementation.
+ (void) addMethodForSelector: | (SEL) | selector | |
fromMethod: | (NSAMethod *) | method | |
Adds a new method to a class with a given name and template method.
+ (void) addMethodForSelector: | (SEL) | selector | |
implementation: | (IMP) | implementation | |
types: | (NSString *) | implementationTypes | |
Adds a new method to a class with a given name and implementation.
+ (NSAMethod *) classMethodObjectForSelector: | (SEL) | selector |
Returns class Method from given selector;.
+ (Method) classMethodValueForSelector: | (SEL) | selector |
Returns class Method from given selector;.
+ (IMP) methodImplementationForSelector: | (SEL) | selector |
Returns IMP from given method.
+ (NSAMethod *) methodObjectForSelector: | (SEL) | selector |
Returns Method from given selector;.
+ (Method) methodValueForSelector: | (SEL) | selector |
Returns Method from given selector;.
+ (NSString *) name |
Returns name of class.