我在我的应用程序中为 CoverFlow 实现 iCarousel。我找不到检测方法,现在显示的是哪个视图。
有没有人知道?谢谢。
根据文档,您可以使用该属性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;