【发布时间】:2013-02-27 05:31:20
【问题描述】:
我正在学习如何将目标 c 绑定到 monotouch,但我遇到了块属性问题
@property (nonatomic, copy) void (^onLongPress)(UIView*, NSInteger);
我现在有这个
delegate void onLongPress (UIView view, int index);
[Export ("onLongPress")]
void onLongPress() { set; }
【问题讨论】:
标签: binding xamarin.ios