web-dev-qa-db-ja.com

Objective-Cクラスまたはインスタンスのすべてのメソッドを取得する

Objective-Cでは、特定のクラスまたはインスタンスが特定のセレクターに応答するかどうかをテストできます。しかし、クラスまたはそのクラスのすべてのメソッドまたはプロパティ(たとえば、すべてのメソッドまたはプロパティのリスト)をクラスまたはインスタンスにクエリするにはどうすればよいですか?

38
Georg Fritzsche

Objective Cランタイムメソッドを使用する必要があります。以下を参照してください。 https://developer.Apple.com/reference/objectivec/objective_c_runtime

9
Ben Gottlieb

Buzzyの回答に加えて、デバッグの目的で-[NSObject _methodDescription]プライベートメソッドを使用できます。

Lldbのいずれか:

(lldb) po [[UIApplication sharedApplication] _methodDescription]

またはコードで:

@interface NSObject (Private)
- (NSString*)_methodDescription;
@end

// Somewhere in the code:
NSLog(@"%@", [objectToInspect performSelector:@selector(_methodDescription)]);

出力は次のようになります。

<__NSArrayM: 0x7f9 ddc4359a0>:
in __NSArrayM:
    Class Methods:
        + (BOOL) automaticallyNotifiesObserversForKey:(id)arg1; (0x11503b510)
        + (id) allocWithZone:(_NSZone*)arg1; (0x11503b520)
        + (id) __new:::::(const id*)arg1; (0x114f0d700)
    Instance Methods:
        - (void) removeLastObject; (0x114f669a0)
        - (void) dealloc; (0x114f2a8f0)
        - (void) finalize; (0x11503b2c0)
        - (id) copyWithZone:(_NSZone*)arg1; (0x114f35500)
        - (unsigned long) count; (0x114f0d920)
        - (id) objectAtIndex:(unsigned long)arg1; (0x114f2a730)
        - (void) getObjects:(id*)arg1 range:(_NSRange)arg2; (0x114f35650)
        - (void) addObject:(id)arg1; (0x114f0d8e0)
        - (void) setObject:(id)arg1 atIndex:(unsigned long)arg2; (0x114f99680)
        - (void) insertObject:(id)arg1 atIndex:(unsigned long)arg2; (0x114f0d940)
        - (void) exchangeObjectAtIndex:(unsigned long)arg1 withObjectAtIndex:(unsigned long)arg2; (0x114f8bf80)
        ......
in NSMutableArray:
    Class Methods:
        + (id) copyNonRetainingArray; (0x11ee20178)
        + (id) nonRetainingArray; (0x11ee201e8)
        + (id) nonRetainingArray; (0x120475026)
        + (id) arrayWithCapacity:(unsigned long)arg1; (0x114f74280)
        ......
44
Borys Verebskyi

あなたはこれを行うことができ、それは https://developer.Apple.com/library/mac/documentation/cocoa/Reference/ObjCRuntimeRef/index.html で非常によく文書化されています

クラスのすべてのインスタンスまたはクラスメソッドをフェッチするには、class_copyMethodListを使用して、結果を反復処理します。例:

 #import <objc/runtime.h>

/**
 *  Gets a list of all methods on a class (or metaclass)
 *  and dumps some properties of each
 *
 *  @param clz the class or metaclass to investigate
 */
void DumpObjcMethods(Class clz) {

    unsigned int methodCount = 0;
    Method *methods = class_copyMethodList(clz, &methodCount);

    printf("Found %d methods on '%s'\n", methodCount, class_getName(clz));

    for (unsigned int i = 0; i < methodCount; i++) {
        Method method = methods[i];

        printf("\t'%s' has method named '%s' of encoding '%s'\n",
               class_getName(clz),
               sel_getName(method_getName(method)),
               method_getTypeEncoding(method));

        /**
         *  Or do whatever you need here...
         */
    }

    free(methods);
}

このメソッドを2回呼び出す必要があります。 1つはインスタンスメソッド用、もう1つはクラスメソッド用です。

/**
 *  This will dump all the instance methods
 */
DumpObjcMethods(yourClass);

メタクラスで同じを呼び出すと、すべてのクラスメソッドが得られます

/**
 *  Calling the same on the metaclass gives you
 *  the class methods
 */
DumpObjcMethods(object_getClass(yourClass) /* Metaclass */);
43
Buzzy

これは、objc_method_listを介して可能です。メソッドを列挙するには、すべてのメソッドを事前に登録する必要があります。

プロセスは簡単です。関数を宣言したら、objc_methodのインスタンスを作成して、関数名を登録できます。次に、objc_methodをobjc_method_listに追加し、最後にobjc_method_listをclass_addMethodsに渡します。

ここにあなたが始めるためのリンクがあります: http://theocacao.com/document.page/327

4
user250120