I'm trying to implement a category for a UIViewController and I want to be certain that the object conforms to a certain protocol. Something like this:
#import <UIKit/UIKit.h>
@interface UIViewController<MyProtocol> (Category)
@end
Is this possible?