ios – 如果方法“[aClass responsesToSelector:@selector(fun)]”的乐趣有三个参数

前端之家收集整理的这篇文章主要介绍了ios – 如果方法“[aClass responsesToSelector:@selector(fun)]”的乐趣有三个参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人可以告诉我

我使用这个方法“[aClass respondToSelector:@selector(fun)]”来查找是否有任何类的乐趣

但是当乐趣有三个参数我该怎么处理呢?

谢谢

解决方法

在选择器中每个冒号(:)都是一个参数.方法 – (id)funWithA:(id)a B:(id)b C:(id)c
[aClass respondsToSelector:@selector(funWithA:B:C:)];

如果参数之间没有文本 – (id)fun:(id)a:(id)b:(id)c

[aClass respondsToSelector:@selector(fun:::)];
原文链接:https://www.f2er.com/iOS/329697.html

猜你在找的iOS相关文章