このアニメーションを UIBarButtonItem に適用しようとしています:
CABasicAnimation *theAnimation;
theAnimation=[CABasicAnimation animationWithKeyPath:@"opacity"];
theAnimation.duration=1.0;
theAnimation.repeatCount=HUGE_VALF;
theAnimation.autoreverses=YES;
theAnimation.fromValue=[NSNumber numberWithFloat:1.0];
theAnimation.toValue=[NSNumber numberWithFloat:0.5];
[plusbutton.layer addAnimation:theAnimation forKey:@"animateOpacity"];
しかし、コードの最後の行のタイトルでエラーが報告されます。barbuttonItem のレイヤーにアクセスするにはどうすればよいですか?