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

时间:2013-12-20 04:14:06

标签: c# ios xamarin.ios xamarin wrapper

我正在尝试创建此iOS本机控件的xamarin wrapperhttps://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;}
}

你能解释一下可能出现的问题吗?

您可以下载完整的项目here

1 个答案:

答案 0 :(得分:2)

当从绑定项目中的协议继承时,问题是Xamarin.iOS中的series of bugs,如下所示:

public partial interface ECSlidingViewController :
    IUIViewControllerContextTransitioning,
    IUIViewControllerTransitionCoordinator, 
    IUIViewControllerTransitionCoordinatorContext {

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

public partial interface ECSlidingViewController {
相关问题