无法创建 xamarin.ios 本机控件包装器



我正在尝试创建这个iOS本机控件的xamarin wrapper。 https://github.com/ECSlidingViewController/ECSlidingViewController。

我按照那里的指示 http://docs.xamarin.com/guides/ios/advanced_topics/binding_objective-c/binding_walkthrough/。
我创建了 iOS 绑定项目,但无法构建项目。存在错误:

Error BI1018: btouch: No [Export] attribute on property ECSliding.ECSlidingViewController.IsAnimated (BI1018) (ECSlidingBinding)

Error BI1018: btouch: No [Export] attribute on property ECSliding.ECSlidingViewController.ContainerView (BI1018) (ECSlidingBinding)

ApiDefinitions.cs(摘录)

[BaseType (typeof (UIViewController))]
public partial interface ECSlidingViewController : IUIViewControllerContextTransitioning, IUIViewControllerTransitionCoordinator, IUIViewControllerTransitionCoordinatorContext {
    [Static, Export ("slidingWithTopViewController:")]
    ECSlidingViewController SlidingWithTopViewController (UIViewController topViewController);
    [Export ("initWithTopViewController:")]
    IntPtr Constructor (UIViewController topViewController);
    [Export ("topViewController", ArgumentSemantic.Retain)]
    UIViewController TopViewController { get; set; }
    [Export ("underLeftViewController", ArgumentSemantic.Retain)]
    UIViewController UnderLeftViewController { get; set; }
    [Export ("underRightViewController", ArgumentSemantic.Retain)]
    UIViewController UnderRightViewController { get; set; }
    [Export ("anchorLeftPeekAmount")]
    float AnchorLeftPeekAmount { get; set; }
    [Export ("anchorLeftRevealAmount")]
    float AnchorLeftRevealAmount { get; set; }
    [Export ("anchorRightPeekAmount")]
    float AnchorRightPeekAmount { get; set; }
    [Export ("anchorRightRevealAmount")]
    float AnchorRightRevealAmount { get; set; }
    [Export ("anchorTopViewToRightAnimated:")]
    void AnchorTopViewToRightAnimated (bool animated);
    [Export ("anchorTopViewToRightAnimated:onComplete:")]
    void AnchorTopViewToRightAnimated (bool animated, Delegate complete);
    [Export ("anchorTopViewToLeftAnimated:")]
    void AnchorTopViewToLeftAnimated (bool animated);
    [Export ("anchorTopViewToLeftAnimated:onComplete:")]
    void AnchorTopViewToLeftAnimated (bool animated, Delegate complete);
    [Export ("resetTopViewAnimated:")]
    void ResetTopViewAnimated (bool animated);
    [Export ("resetTopViewAnimated:onComplete:")]
    void ResetTopViewAnimated (bool animated, Delegate complete);
    [Export ("topViewControllerStoryboardId", ArgumentSemantic.Retain)]
    string TopViewControllerStoryboardId { get; set; }
    [Export ("underLeftViewControllerStoryboardId", ArgumentSemantic.Retain)]
    string UnderLeftViewControllerStoryboardId { get; set; }
    [Export ("underRightViewControllerStoryboardId", ArgumentSemantic.Retain)]
    string UnderRightViewControllerStoryboardId { get; set; }
    [Export ("delegate", ArgumentSemantic.Assign)]
    ECSlidingViewControllerDelegate Delegate { get; set; }
    [Export ("topViewAnchoredGesture")]
    ECSlidingViewControllerAnchoredGesture TopViewAnchoredGesture { get; set; }
    [Export ("currentTopViewPosition")]
    ECSlidingViewControllerTopViewPosition CurrentTopViewPosition { get; }
    [Export ("panGesture", ArgumentSemantic.Retain)]
    UIPanGestureRecognizer PanGesture { get; }
    [Export ("resetTapGesture", ArgumentSemantic.Retain)]
    UITapGestureRecognizer ResetTapGesture { get; }
    [Export ("customAnchoredGestures", ArgumentSemantic.Retain)]//, Verify ("NSArray may be reliably typed, check the documentation", "/Users/admin/Desktop/all/ECSlidingViewController1/ECSlidingViewController/ECSlidingViewController.h", Line = 294)]
    NSObject [] CustomAnchoredGestures { get; set; }
    [Export ("isAnimated")]
    bool IsAnimated {get; set;}
    [Export ("containerView")]
    UIView ContainerView {get; set;}
}

你能解释一下可能是什么问题吗?

您可以在此处下载完整项目。

问题是从绑定项目中的协议继承时 Xamarin.iOS 中的一系列错误,如下所示:

public partial interface ECSlidingViewController :
    IUIViewControllerContextTransitioning,
    IUIViewControllerTransitionCoordinator, 
    IUIViewControllerTransitionCoordinatorContext {

在解决此问题之前,请尝试删除所有这些接口:

public partial interface ECSlidingViewController {

最新更新