我在我的应用程序中实现了一个CoverFlow的iCarousel。我无法找到检测方法,现在显示了哪种视图。
任何人都知道吗?日Thnx。
答案 0 :(得分:2)
根据documentation,您可以使用属性currentItemIndex
:
@property (nonatomic, readonly) NSInteger currentItemIndex;
轮播中当前居中项目的索引(只读)。
或属性currentItemView
:
@property (nonatomic, retain, readonly) UIView *currentItemView;
轮播中当前居中的项目视图。此视图的索引与currentItemIndex匹配。
例如:
// Current index
NSInteger currentIndex = myCarousel.currentItemIndex;
// Current view
UIView *currentView = myCarousel.currentItemView;