How would go about creating a circle that expands overtime. I want to do something like this:
[UIView animateWithDuration:5 animations:^(void){
/* Expand the circle */
// Get the contextRef
CGContextRef contextRef = UIGraphicsGetCurrentContext();
// Set the border width
CGContextSetLineWidth(contextRef, 1.0);
// Set the circle fill color to Transparent
CGContextSetRGBFillColor(contextRef, 0.0, 0.0, 0.0, 0.0);
// Set the cicle border color to BLUE
CGContextSetRGBStrokeColor(contextRef, 0.0, 0.0, 255.0, 1.0);
// Fill the circle with the fill color
CGContextFillEllipseInRect(contextRef, self.view.frame);
// Draw the circle border
CGContextStrokeEllipseInRect(contextRef, self.view.frame);
}];