次のコードを使用して、UIView
その中に円を描く があります。
-(void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, myColor);
CGContextFillEllipseInRest(context, myRect);
}
この円を灰色にアニメートしたい...どうすればこれを達成できますか?
-(void)fadeToGrey {
// What goes here?
}