我正在尝试为 UIViewController 实现一个类别,并且我想确定该对象符合某个协议。像这样的东西:
#import <UIKit/UIKit.h>
@interface UIViewController<MyProtocol> (Category)
@end
这可能吗?
我正在尝试为 UIViewController 实现一个类别,并且我想确定该对象符合某个协议。像这样的东西:
#import <UIKit/UIKit.h>
@interface UIViewController<MyProtocol> (Category)
@end
这可能吗?