我使用以下代码创建了一个PieChart。在这里,我将x
和y
的总和作为100%,将x%
显示为红色,将y%
显示为pieChart上的绿色。
在红色上我想显示确切的x%
(示例45%
(或)55%
),在绿色上我想要显示确切的y%
(示例55%
(或)45%
)。
在我的应用程序中,X
和Y
值是变量。每次运行我的应用程序时,这些值都在变化。我想显示带有绿色和红色的pieChart以及这些区域的百分比。如何制作框架以显示该区域的百分比?
.m文件
- (void)drawRect:(CGRect)rect
{
// Drawing code
int x = 25;
int y = 42;
float sum = x + y;
float mult = (360/sum);
float startDeg = 0;
float endDeg = 0;
int x = 74;
int y = 60;
int r = 60;
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(ctx, 1.0, 1.0, 1.0, 1.0);
CGContextSetLineWidth(ctx, 2.0);
startDeg = 0;
endDeg = (x * mult);
if(startDeg != endDeg)
{
CGContextSetRGBFillColor(ctx, 0.0, 0.8, 0.0, 1.0);
CGContextMoveToPoint(ctx, x, y);
CGContextAddArc(ctx, x, y, r, (startDeg)*M_PI/180.0, (endDeg)*M_PI/180.0, 0);
CGContextClosePath(ctx);
CGContextFillPath(ctx);
}
startDeg = endDeg;
endDeg = endDeg + (y * mult);
if(startDeg != endDeg)
{
CGContextSetRGBFillColor(ctx, 0.8, 0.0, 0.0, 1.0);
CGContextMoveToPoint(ctx, x, y);
CGContextAddArc(ctx, x, y, r, (startDeg)*M_PI/180.0, (endDeg)*M_PI/180.0, 0);
CGContextClosePath(ctx);
CGContextFillPath(ctx);
}
}
答案 0 :(得分:4)
您可以在drawRect方法中使用NSString drawInRect绘制字符串。例如:
[percentageString drawInRect:CGRectMake(100, 100, 30, 20)
withFont:font
lineBreakMode:UILineBreakModeClip
alignment:UITextAlignmentLeft];
<强>更新强>
以下是如何找到用于放置文本的x,y:
CGFloat startDegree = 180; // start at 180
CGFloat endDegree = degree; // end at some value
CGFloat mid = (endDegree + startDegree) / 2; // find midpoint
CGFloat rad = DEGREES_TO_RADIANS(mid); // convert to radians
// center is center of pie chart
// radius is how big the pie chart is
// 30 is extra to draw text outside circle
CGFloat x = center.x + ((radius + 30) * cos(rad));
CGFloat y = center.y + ((radius + 30) * sin(rad));
NSLog(@"X Y: %f %f %f", x, y, degree);
NSString *text = @"Test";
[text drawInRect:CGRectMake(x, y, 50, 44) withFont:[UIFont systemFontOfSize:14.0f]];
我有一个样本饼图,所以我使用了它。它有一个度数滑块。在这个例子中,我可以将饼图的一段从180度绘制到360度。