作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
假设我有一个选择器可以分配给几个不同的方法 - 每个方法都有不同的返回值。
有没有办法在调用“performSelector”之前检查选择器持有的方法的返回值是多少?
最佳答案
Is there a way to check what is the return value of the method the selector is holding before calling "performSelector"?
值(value)?不,类型?是的。您似乎需要方法的返回类型(否则您的问题就没有意义)。
Method m = class_getInstanceMethod([SomeClass class], @selector(foo:bar:));
char type[128];
method_getReturnType(m, type, sizeof(type));
然后您可以在type
中检查返回的类型字符串。例如,“v”
表示无效(谷歌搜索完整列表)。
关于ios - Objective C >> 有没有办法检查 Selector 的返回值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14602854/
我是一名优秀的程序员,十分优秀!