我正在使用这段代码为 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 *)动画完成:(BOOL)flag{
NSLog(@"停止!");
}
有人可以帮助我吗?
谢谢!