有人可以告诉我
我使用这个方法“[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