1

我正在尝试在我的 Xamarin for iOS 项目中使用 iOS 库iCarousel 。我在 XCode 中制作了静态库并将其添加到 Xamarin iOS Binding 项目中。试图从 lib .a 文件中定义导出。但是我对 Objective-C 没有任何经验,所以我很难在 iOS Binding Project 中声明导出(可以在我的目标项目中用作 dll)。我尝试使用monotouch-binding-generator来生成所需的声明,但是在编译 iOS Binding Project 后出现了很多错误。这是我对 C# 的声明。

[BaseType (typeof (UIView))]
interface iCarousel {
    [Export ("id<iCarouselDelegate>")]
    IBOutlet Id<iCarouselDelegate> { get; set;  }

    [Export ("type")]
    iCarouselType Type { get; set;  }

    [Export ("perspective")]
    float Perspective { get; set;  }

    [Export ("decelerationRate")]
    float DecelerationRate { get; set;  }

    [Export ("scrollSpeed")]
    float ScrollSpeed { get; set;  }

    [Export ("bounceDistance")]
    float BounceDistance { get; set;  }

    [Export ("scrollEnabled")]
    bool ScrollEnabled { get; set;  }

    [Export ("bounces")]
    bool Bounces { get; set;  }

    [Export ("scrollOffset")]
    float ScrollOffset { get; set;  }

    [Export ("offsetMultiplier")]
    float OffsetMultiplier { get;  }

    [Export ("contentOffset")]
    SizeF ContentOffset { get; set;  }

    [Export ("viewpointOffset")]
    SizeF ViewpointOffset { get; set;  }

    [Export ("numberOfItems")]
    int NumberOfItems { get;  }

    [Export ("numberOfPlaceholders")]
    int NumberOfPlaceholders { get;  }

    [Export ("currentItemIndex")]
    int CurrentItemIndex { get; set;  }

    [Export ("currentItemView")]
    UIView CurrentItemView { get;  }

    [Export ("indexesForVisibleItems")]
    NSArray IndexesForVisibleItems { get;  }

    [Export ("numberOfVisibleItems")]
    int NumberOfVisibleItems { get;  }

    [Export ("visibleItemViews")]
    NSArray VisibleItemViews { get;  }

    [Export ("itemWidth")]
    float ItemWidth { get;  }

    [Export ("contentView")]
    UIView ContentView { get;  }

    [Export ("toggle")]
    float Toggle { get;  }

    [Export ("stopAtItemBoundary")]
    bool StopAtItemBoundary { get; set;  }

    [Export ("scrollToItemBoundary")]
    bool ScrollToItemBoundary { get; set;  }

    [Export ("useDisplayLink")]
    bool UseDisplayLink { get; set;  }

    [Export ("vertical")]
    bool Vertical { get; set;  }

    [Export ("ignorePerpendicularSwipes")]
    bool IgnorePerpendicularSwipes { get; set;  }

    [Export ("centerItemWhenSelected")]
    bool CenterItemWhenSelected { get; set;  }

    [Export ("IBOutletid<iCarouselDataSource>dataSource")]
    nonatomic, ah_weak IBOutletid<iCarouselDataSource>dataSource ();

    [Export ("scrollByOffset:duration:")]
    void ScrollByOffsetduration (float offset, double duration);

    [Export ("scrollToOffset:duration:")]
    void ScrollToOffsetduration (float offset, double duration);

    [Export ("scrollByNumberOfItems:duration:")]
    void ScrollByNumberOfItemsduration (int itemCount, double duration);

    [Export ("scrollToItemAtIndex:duration:")]
    void ScrollToItemAtIndexduration (int index, double duration);

    [Export ("scrollToItemAtIndex:animated:")]
    void ScrollToItemAtIndexanimated (int index, bool animated);

    [Export ("removeItemAtIndex:animated:")]
    void RemoveItemAtIndexanimated (int index, bool animated);

    [Export ("insertItemAtIndex:animated:")]
    void InsertItemAtIndexanimated (int index, bool animated);

    [Export ("reloadItemAtIndex:animated:")]
    void ReloadItemAtIndexanimated (int index, bool animated);

    [Export ("itemViewAtIndex:")]
    UIView ItemViewAtIndex (int index);

    [Export ("indexOfItemView:")]
    int IndexOfItemView (UIView view);

    [Export ("indexOfItemViewOrSubview:")]
    int IndexOfItemViewOrSubview (UIView view);

    [Export ("offsetForItemAtIndex:")]
    float OffsetForItemAtIndex (int index);

    [Export ("reloadData")]
    void ReloadData ();

}

[BaseType (typeof ())]
[Model]
interface iCarouselDataSource {
    [Abstract]
    [Export ("numberOfItemsInCarousel:")]
    uint NumberOfItemsInCarousel (iCarousel carousel);

    [Abstract]
    [Export ("carousel:viewForItemAtIndex:reusingView:")]
    UIView CarouselviewForItemAtIndexreusingView (iCarousel carousel, uint index, UIView view);

    [Abstract]
    [Export ("numberOfPlaceholdersInCarousel:")]
    uint NumberOfPlaceholdersInCarousel (iCarousel carousel);

    [Abstract]
    [Export ("carousel:placeholderViewAtIndex:reusingView:")]
    UIView CarouselplaceholderViewAtIndexreusingView (iCarousel carousel, uint index, UIView view);

    [Abstract]
    [Export ("numberOfVisibleItemsInCarousel:")]
    uint NumberOfVisibleItemsInCarousel (iCarousel carousel);

}

[BaseType (typeof ())]
[Model]
interface iCarouselDelegate {
    [Export ("carouselWillBeginScrollingAnimation:")]
    void CarouselWillBeginScrollingAnimation (iCarousel carousel);

    [Export ("carouselDidEndScrollingAnimation:")]
    void CarouselDidEndScrollingAnimation (iCarousel carousel);

    [Export ("carouselDidScroll:")]
    void CarouselDidScroll (iCarousel carousel);

    [Export ("carouselCurrentItemIndexUpdated:")]
    void CarouselCurrentItemIndexUpdated (iCarousel carousel);

    [Export ("carouselWillBeginDragging:")]
    void CarouselWillBeginDragging (iCarousel carousel);

    [Export ("carouselDidEndDragging:willDecelerate:")]
    void CarouselDidEndDraggingwillDecelerate (iCarousel carousel, bool decelerate);

    [Export ("carouselWillBeginDecelerating:")]
    void CarouselWillBeginDecelerating (iCarousel carousel);

    [Export ("carouselDidEndDecelerating:")]
    void CarouselDidEndDecelerating (iCarousel carousel);

    [Export ("carousel:itemTransformForOffset:baseTransform:")]
    CATransform3D CarouselitemTransformForOffsetbaseTransform (iCarousel carousel, float offset, CATransform3D transform);

    [Export ("carousel:valueForOption:withDefault:")]
    float CarouselvalueForOptionwithDefault (iCarousel carousel, iCarouselOption option, float value);

    [Export ("carousel:shouldSelectItemAtIndex:")]
    bool CarouselshouldSelectItemAtIndex (iCarousel carousel, int index);

    [Export ("carousel:didSelectItemAtIndex:")]
    void CarouseldidSelectItemAtIndex (iCarousel carousel, int index);

    [Export ("carouselShouldWrap:__attribute__((deprecated))")]
    bool CarouselShouldWrap__attribute__((deprecated)) (iCarousel carousel, (deprecated ));

    [Export ("carouselItemWidth:__attribute__((deprecated))")]
    float CarouselItemWidth__attribute__((deprecated)) (iCarousel carousel, (deprecated ));

    [Export ("carouselOffsetMultiplier:__attribute__((deprecated))")]
    float CarouselOffsetMultiplier__attribute__((deprecated)) (iCarousel carousel, (deprecated ));

    [Export ("carousel:itemAlphaForOffset:__attribute__((deprecated))")]
    float CarouselitemAlphaForOffset__attribute__((deprecated)) (iCarousel carousel, float offset, (deprecated ));

    [Export ("carousel:valueForTransformOption:withDefault:__attribute__((deprecated))")]
    float CarouselvalueForTransformOptionwithDefault__attribute__((deprecated)) (iCarousel carousel, iCarouselOption option, float value, (deprecated ));

}  

如何修复错误并在我的 Xamarin.iOS 项目中使用 iCarousel?这是我与 Xamarin 的第一个项目,如果问题很愚蠢,对不起。

谢谢。

4

1 回答 1

2

那些看起来不对:

[Export ("id<iCarouselDelegate>")]
IBOutlet Id<iCarouselDelegate> { get; set;  }

[...]

[Export ("IBOutletid<iCarouselDataSource>dataSource")]
nonatomic, ah_weak IBOutletid<iCarouselDataSource>dataSource ();

[...]


[Export ("carouselShouldWrap:__attribute__((deprecated))")]
bool CarouselShouldWrap__attribute__((deprecated)) (iCarousel carousel, (deprecated ));

[Export ("carouselItemWidth:__attribute__((deprecated))")]
float CarouselItemWidth__attribute__((deprecated)) (iCarousel carousel, (deprecated ));

[Export ("carouselOffsetMultiplier:__attribute__((deprecated))")]
float CarouselOffsetMultiplier__attribute__((deprecated)) (iCarousel carousel, (deprecated ));

[Export ("carousel:itemAlphaForOffset:__attribute__((deprecated))")]
float CarouselitemAlphaForOffset__attribute__((deprecated)) (iCarousel carousel, float offset, (deprecated ));

[Export ("carousel:valueForTransformOption:withDefault:__attribute__((deprecated))")]
float CarouselvalueForTransformOptionwithDefault__attribute__((deprecated)) (iCarousel carousel, iCarouselOption option, float value, (deprecated ));

对于已弃用的,请删除它们,您将不需要它们。对于另外两个,首先将它们注释掉,然后修复它们。

还有这样的:

[BaseType (typeof ())]
[Model]
interface iCarouselDelegate {

代表通常是[BaseType (typeof (NSObject)]

无论如何,拥有一个生成器可以帮助您入门,但永远不要期望它会为您完成所有工作。不要不读这篇文章并了解一点 Obj-C的经济性

于 2013-03-13T09:32:05.533 回答