Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
据我所知 respondsToSelector: 是 NSObject 协议的一种方法,但是对于协议中的所有方法,符合协议的类需要提供实现,但是我们创建的所有协议都符合 NSObject 协议,但我们不提供任何实现那些方法。可能是我遗漏了一些明显的东西,请容忍我。
您不需要-respondsToSelector:在自己的类中实现。事实上,你可能不应该。实现将NSObject能够在运行时自行解决。
-respondsToSelector:
NSObject