in iOS 6 I used to add a UIImageView to MKCircleView and animated it like this:
UIImage* img = [UIImage imageNamed:@"orangeCircle.png"]; imageView = [[UIImageView alloc] initWithImage:img]; imageView.frame = CGRectMake(0, 0, 0, 0); imageView.alpha=0.7f; [self addSubview:imageView];
Since MKCircleView deprecated, now I am using MKCircleRenderer , but I can no longer add subview .
Is there a way to add a UIImageView to MKCircleRenderer ?
source share