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.
可能重复: 为什么要将 NSObject 的协议附加到协议实现中
这是否意味着Foo符合NSObject's 协议?是否Foo必须像其他类符合协议时那样实现NSObject协议方法?
Foo
NSObject
@protocol Foo <NSObject>
这只是确保您将NSObject成员添加到您的协议中,请查看此帖子:
为什么要将 NSObject 的协议附加到协议实现中