5

contentOffset を設定する独自のアニメーションを作成せずに contentOffset アニメーションの速度を変更する方法はありますか?

contentOffset の変更のために独自のアニメーションを作成できない理由は、これが -scrollViewDidScroll: をアニメーション中に定期的に呼び出さないためです。

4

4 に答える 4

12

残念ながら、それを行うクリーンで簡単な方法はありません。これは少し残忍ですが、有効なアプローチです。

CADisplayLink1)プロパティとして追加:

@property (nonatomic, strong) CADisplayLink *displayLink;

2) アニメーション コンテンツ オフセット:

CGFloat duration = 2.0;

// Create CADisplay link and add it to the run loop
self.displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(_displayLinkTick)];
[self.displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];

[UIView animateWithDuration:duration animations:^{
    self.scrollView.contentOffset = newContentOffset;       
} completion:^(BOOL finished) {
    // Cleanup the display link
    [self.displayLink removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
    self.displayLink = nil;
}];

3) 最後に、次のpresentationLayerような変更を観察します。

- (void)_displayLinkTick {
    CALayer *presentationLayer = (CALayer *)self.scrollView.layer.presentationLayer;
    CGPoint contentOffset = presentationLayer.bounds.origin;
    [self _handleContentOffsetChangeWithOffset:contentOffset];
}

- (void)_handleContentOffsetChangeWithOffset:(CGPoint)offset {
    // handle offset change
}
于 2014-01-18T15:09:39.680 に答える
2

スクロール状態に関する定期的な情報を取得するには、アニメーションを段階的に実行できます。デリゲートは、ステップごとに 1 回 (scrollViewDidScroll:) 呼び出されます。

- (void)scrollTo:(CGPoint)offset completion:(void (^)(BOOL))completion {

    // this presumes an outlet called scrollView.   You could generalize by passing
    // the scroll view, or even more generally, place this in a UIScrollView category
    CGPoint contentOffset = self.scrollView.contentOffset;

    // scrollViewDidScroll delegate will get called 'steps' times
    NSInteger steps = 10;
    CGPoint offsetStep = CGPointMake((offset.x-contentOffset.x)/steps, (offset.y-contentOffset.y)/steps);
    NSMutableArray *offsets = [NSMutableArray array];

    for (int i=0; i<steps; i++) {
        CGFloat stepX = offsetStep.x * (i+1);
        CGFloat stepY = offsetStep.y * (i+1);
        NSValue *nextStep = [NSValue valueWithCGPoint:CGPointMake(contentOffset.x+stepX, contentOffset.y+stepY)];
        [offsets addObject:nextStep];
    }
    [self scrollBySteps:offsets completion:completion];
}

// run several scroll animations back-to-back
- (void)scrollBySteps:(NSMutableArray *)offsets completion:(void (^)(BOOL))completion {

    if (!offsets.count) return completion(YES);

    CGPoint offset = [[offsets objectAtIndex:0] CGPointValue];
    [offsets removeObjectAtIndex:0];

    // total animation time == steps * duration.  naturally, you can fool with both
    // constants.  to keep the rate constant, set duration == steps * k, where k
    // is some constant time per step
    [UIView animateWithDuration:0.1 delay:0.0 options:UIViewAnimationOptionCurveLinear animations:^{
        self.scrollView.contentOffset = offset;
    } completion:^(BOOL finished) {
        [self scrollBySteps:offsets completion:completion];
    }];
}

このように呼び...

CGPoint bottomOffset = CGPointMake(0, self.scrollView.contentSize.height - self.scrollView.bounds.size.height);    
[self scrollTo:bottomOffset completion:^(BOOL finished) {}];

// BONUS completion handler!  you can omit if you don't need it
于 2013-03-03T21:02:45.107 に答える
-3

これが機能する簡単なソリューションです。

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.5];
    [self setContentOffset:<offset> animated:YES];
    [UIView commitAnimations];

お役に立てれば。

ブライアン

于 2013-06-05T21:26:53.743 に答える