标签: objective-c objective-c-category objective-c-protocol
我试图为UIViewController实现一个类别,我想确定该对象符合某个协议。像这样:
#import <UIKit/UIKit.h> @interface UIViewController<MyProtocol> (Category) @end
这可能吗?
答案 0 :(得分:1)
交换类别和协议:
@interface UIViewController (Category) <MyProtocol>