SDCycleScrollView
SDCycleScrollView copied to clipboard
此方法无效‘- (void)makeScrollViewScrollToIndex:(NSInteger)index’
这个方法并没有效果,无法指定轮播图滚动到‘index’页
找到解决方案了嘛?作者能否出来解答一下。
替换成这个方法
-
(void)makeScrollViewScrollToIndex:(NSInteger)index{ if (self.autoScroll) { [self invalidateTimer]; } if (0 == _totalItemsCount) return;
if (self.infiniteLoop) { [self scrollToIndex:(int)(_totalItemsCount * 0.5 + index)]; }else{ [self scrollToIndex:(int)index]; }
if (self.autoScroll) { [self setupTimer]; } }
在非循环下无法正常使用的问题,目前最新版本未修复更新
你好,你发给我的邮件已收到,看到邮件我会主动与你联系!谢谢!