Animate scrolling of UIScrollView with CoreAnimation
问题 Sorry for a big question, real question are bold in bottom, now some explanation. I'm use CoreAnimation in my project for animate some objects moving like this. CABasicAnimation *moveAnimation; moveAnimation=[CABasicAnimation animationWithKeyPath:@"position"]; moveAnimation.duration = 2.0; moveAnimation.repeatCount=1; moveAnimation.autoreverses=NO; moveAnimation.delegate = self; moveAnimation.fromValue = [NSValue valueWithCGPoint:[crawler.layer position]]; moveAnimation.fillMode =