I am beginner with Objective-C. So I write my app using C# + Monotouch. Now I need to use third-party library TTTAttributedLabel written in ObjC. It is neccessary to bind it's code to C#. There is some interesting construction:
@protocol TTTAttributedLabel <NSObject>
@property (nonatomic, copy) id text;
@end
@interface TTTAttributedLabel : UILabel <TTTAttributedLabel, UIGestureRecognizerDelegate>
/* some code here */
@end
It is clear to me about TTTAttributedLabel and UILabel inheritance. I did it this way:
[BaseType (typeof (NSObject))]
interface TTTAttributedLabel{
// code here
}
[BaseType (typeof (UILabel))]
interface UITextField : TTTAttributedLabel{
}
But I don't know how to inherite UIGestureRecognizerDelegate, because in Objective-C it is a protocol but in Monotouch it is a class. So I can not inherite interface from class.
What is the correct way to do this?