如果我可以访问一个 Objective-C 协议(protocol)并试图弄清楚如何查看它的内部以查看它包含哪些方法,包括它们的签名等。
我尝试过 NSLog 并在调试器中以及在 Internet 上查看对象,但找不到任何方法。
在看到这个 SO 帖子的答案后,我检查了 objc/runtime.h 中的方法:List selectors for Objective-C object并找到了一种 NSLog 协议(protocol)的方法签名的方法
#import <objc/runtime.h>
Protocol *protocol = @protocol(UITableViewDelegate);
BOOL showRequiredMethods = NO;
BOOL showInstanceMethods = YES;
unsigned int methodCount = 0;
struct objc_method_description *methods = protocol_copyMethodDescriptionList(protocol, showrequiredMethods, showInstanceMethods, &methodCount);
NSLog(@"%d required instance methods found:", methodCount);
for (int i = 0; i < methodCount; i++)
{
struct objc_method_description methodDescription = methods[i];
NSLog(@"Method #%d: %@", i, NSStringFromSelector(methodDescription.name));
}
free(methods)
唯一需要注意的是,在 protocol_copyMethodDescriptionList 中,您需要指定是否需要必需的方法和非必需的方法,以及是否需要类方法和实例方法。因此,要涵盖所有四种情况,您需要调用 protocol_copyMethodDescriptionList 四次并打印每个列表的结果。
关于ios - 如何查看 Objective-C 协议(protocol)的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33767285/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |