0

次のコードを使用して、UIViewその中に円を描く があります。

-(void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, myColor);
    CGContextFillEllipseInRest(context, myRect);
}

この円を灰色にアニメートしたい...どうすればこれを達成できますか?

-(void)fadeToGrey {
    // What goes here?
}
4

1 に答える 1