我需要在
Cocoa中使用“signatureWithObjCTypes:”构造一个任意的NSMethodSignature,而没有一个我可以通过“methodSignatureForSelector:”请求签名的对象.
为此,我需要方法编码,例如,是
c12@0:4@8
对于
(BOOL) isEqual: (id) object
我尝试使用@encode(…)来获取类型编码,但这似乎不适用于函数(它导致未知类型’?’).我不想手动编码函数类型,因为它不能在不同的运行时间移植.
问候,
约亨
解决方法
怎么样的:
#import <objc/runtime.h> //inside the method implementation: Method thisMethod = class_getClassMethod([self class],_cmd); const char * encoding = method_getTypeEncoding(thisMethod);
或者对于任意方法:
#import <objc/runtime.h> //inside the method implementation: Method thisMethod = class_getClassMethod([self class],@selector(isEqual:)); const char * encoding = method_getTypeEncoding(thisMethod);