0

次のコードを使用して、NSScrollView のスクロールをアニメーション化しています。

    [NSAnimationContext beginGrouping];
    NSClipView* clipView = [self contentView];
    NSPoint newOrigin = [clipView bounds].origin;
    newOrigin.x = page*kGalleryWidth;
    [[clipView animator] setBoundsOrigin:newOrigin];
    [NSAnimationContext endGrouping];

今、アニメーションの終了をトリガーするイベントを取得しようとしています。CAAnimationを使用して数行のコードでそれを簡単に達成できることを読みましたが、できません。

私はこれらの次のコードを試しました:

CAAnimation *moveAnimation = [[self.contentView animationForKey:@"frameOrigin"] copy];
moveAnimation.delegate = self;
[self.contentView setAnimations:[NSDictionary dictionaryWithObject:moveAnimation forKey:@"frameOrigin"]];
  • (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)フラグ{

    NSLog(@"ストップ!");

}

誰かが私を助けることができますか?

ありがとう!

4

2 に答える 2

0
[UIView beginAnimations:@"goback" context:nil];
[UIView setAnimationDuration:0.3f];
[UIView setAnimationBeginsFromCurrentState:NO];
dragOperation.draggable.center =dragOperation.initialPoint;
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector: @selector(animationDidStop:finished:context:)];
UIView commitAnimations];




-(void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context {
    [self.layer removeAnimationForKey:@"goback"];
}
于 2012-08-17T12:21:15.417 に答える
0

この機能を使用できます:

[[NSAnimationContext currentContext] setCompletionHandler:<#(void (^)(void))completionHandler#>]

 [NSAnimationContext beginGrouping];
    [[NSAnimationContext currentContext] setCompletionHandler:^{
        NSLog(@"animation stop!");
    }];
    NSClipView* clipView = [self contentView];
    NSPoint newOrigin = [clipView bounds].origin;
    newOrigin.x = page*kGalleryWidth;
    [[clipView animator] setBoundsOrigin:newOrigin];
    [NSAnimationContext endGrouping];
于 2012-08-29T10:16:43.330 に答える