【问题标题】:Can't create xamarin.ios native control wrapper无法创建 xamarin.ios 本机控件包装器
【发布时间】:2013-12-20 04:14:06
【问题描述】:

我正在尝试创建此 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

【问题讨论】:

    标签: c# ios xamarin.ios xamarin wrapper


    【解决方案1】:

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

    public partial interface ECSlidingViewController :
        IUIViewControllerContextTransitioning,
        IUIViewControllerTransitionCoordinator, 
        IUIViewControllerTransitionCoordinatorContext {
    

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

    public partial interface ECSlidingViewController {
    

    【讨论】:

    • 不幸的是,我遇到了同样的错误,并且删除了接口声明并没有帮助。有什么建议么? @rolf-bjarne-kvinge
    猜你喜欢
    • 2011-10-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-10-25
    • 1970-01-01
    • 2014-08-29
    • 1970-01-01
    • 2017-07-29
    相关资源
    最近更新 更多