Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用iCarousel framework. https://github.com/nicklockwood/iCarousel
iCarousel framework
在那里我想找出视图的滑动方向,因为我有下一个和上一个动作,需要左右滚动。
如果我正确理解您的问题,您想知道用户何时滚动轮播并知道她滚动的方向。如果是这样,您应该实现该方法
- (void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel;
并将新索引与前一个(存储的)值进行比较——如果新索引大于以前,用户向右滚动,如果它更小——向左滚动。