2012-03-23 51 views

回答

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; 
+0

沒錯,但該方法?我應該在哪裏得到它? – 2012-03-23 12:42:34

+0

我做到了carouselDidScroll thnx – 2012-03-23 12:46:34

+1

您應該仍然將上面的答案標記爲可接受的解決方案,因爲它確實回答了您的問題。即使你錯誤地問了問題;) – SpacyRicochet 2012-03-23 12:58:37

相關問題