在Monotouch中创建协议/代理

时间:2011-05-11 16:09:20

标签: mono xamarin.ios

我对如何在Monotouch中创建自定义协议/委托类型感到困惑。

obj-c等价物是

@protocol CellController
   - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath (NSIndexPath *)indexPath;
   @optional
   - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
@end

实现必须是抽象类,接口还是什么?

我确定它并不复杂,我只是无法理解它。代码示例会有所帮助,但是指向正确的方向仍然会非常有用

干杯

[R

1 个答案:

答案 0 :(得分:0)

所以我最终做的是创建一个接口并使用它:)