このコードを使用して、テキストで塗りつぶされた四角形を作成し、それを画像に追加しています
CGRect textRect = CGRectMake(0, p_point.y, p_image.size.width+15, p_image.size.height+10)
[[UIColor colorWithRed:(70/255.0) green:(70/255.0) blue:(70/255.0) alpha:1] set];
CGContextFillRect(UIGraphicsGetCurrentContext(), textRect);
[[UIColor whiteColor] set];
[p_text drawInRect:textRect withFont:font lineBreakMode:NSLineBreakByTruncatingTail alignment:NSTextAlignmentCenter];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
長方形の角を丸くしたいのですが...