I am trying to bind a protocol using the MonoTouch btouch tool
Objective-C protocol:
@protocol KalDataSource <NSObject, UITableViewDataSource>
- (void)presentingDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate delegate:(id<KalDataSourceCallbacks>)delegate;
- (NSArray *)markedDatesFrom:(NSDate *)fromDate to:(NSDate *)toDate;
- (void)loadItemsFromDate:(NSDate *)fromDate toDate:(NSDate *)toDate;
- (void)removeAllItems;
@end
BTouch Binding:
[BaseType(typeof(UITableViewDataSource)]
interface KalDataSource {
...
}
But this results in the btouch error:
error CS0534: `Kal.KalDataSource' does not implement inherited abstract member...
Where the missing members are, of course, GetCell and RowsInSection. I thought of creating a partial class implementation of KalDataSource but still need to make it virtual for consumers to define those methods. Halp?
Update: After clarification it seems it is not immediately possible to bind protocols that "inherit" from other UIKit protocols. I have filed a bug here:
)in the attribute) – poupou Feb 17 '12 at 13:31