の塗りつぶしをCALayer
下から上にアニメーション化しようとしていduration
ます。これを達成するためのあなたの助けとアイデアが必要です。
私はこのように試しました:
CABasicAnimation *pathAnimation =
[CABasicAnimation animationWithKeyPath:@"fillColor"];
pathAnimation.duration = 5.0;
pathAnimation.fromValue = [NSNumber numberWithFloat:0.0f];
pathAnimation.toValue = [NSNumber numberWithFloat:1.0f];
[annotation addAnimation:pathAnimation forKey:@"fillColorAnimation"];
でも変わらない……。
どんなアイデアでも大歓迎です。
皆さんありがとう。