1

我需要降低每个封面之间的滚动速度。有没有人为此提出一个好的解决方案?

我试图降低速度,每英里或固定英里,但没有工作:(

来自“TKCoverflowView.m”的实际代码

#pragma mark UIScrollView Delegate
- (void) scrollViewDidScroll:(UIScrollView *)scrollView{
    velocity = abs(pos - scrollView.contentOffset.x);
    pos = scrollView.contentOffset.x;
    movingRight = self.contentOffset.x - origin > 0 ? YES : NO;
    origin = self.contentOffset.x;

    CGFloat num = numberOfCovers;
    CGFloat per = scrollView.contentOffset.x / (self.contentSize.width - currentSize.width);
    CGFloat ind = num * per;
    CGFloat mi = ind / (numberOfCovers/2);
    mi = 1 - mi;
    mi = mi / 2;
    int index = (int)(ind+mi);
    index = MIN(MAX(0,index),numberOfCovers-1); 

    if(index == currentIndex) return;

    currentIndex = index;
    [self newrange];

    if(velocity < 180 || currentIndex < 15 || currentIndex > (numberOfCovers - 16))
        [self animateToIndex:index animated:YES];
}

[编辑] 刚刚发现编辑这个方法实际上并没有改变任何速度,它只是改变了封面的表现。

找到解决方案,回答。

4

1 回答 1

0

使用 decelerationRate 属性

[self setDecelerationRate:0.9];

Coverflow 的动画效果仍然可以很好地使用它。

于 2012-08-01T18:44:24.250 回答