DaffodilGirl 2013-07-11 08:26 采纳率: 0%
浏览 3744

UIBezierPath充填颜色

我要用UIBezierPath在一个图表中充填颜色。目前我已经完成的代码:

NSMutableArray *graphData=[[NSMutableArray alloc] initWithObjects:[NSArray arrayWithObjects:@"2013-06-26",@"46", nil],[NSArray arrayWithObjects:@"2013-06-27",@"37", nil],[NSArray arrayWithObjects:@"2013-06-28",@"96", nil],[NSArray arrayWithObjects:@"2013-06-29",@"29", nil],[NSArray arrayWithObjects:@"2013-06-30",@"29", nil],[NSArray arrayWithObjects:@"2013-07-01",@"24", nil], nil];
    UIBezierPath *aPath = [UIBezierPath bezierPath];
    [[UIColor blackColor] setStroke];
    [[UIColor redColor] setFill];    
    [aPath moveToPoint:CGPointMake(10, kGraphBottom-[[[graphData objectAtIndex:0] objectAtIndex:1]floatValue])];    
    for (int i = 1; i < graphData.count; i++)
    {
        [aPath addLineToPoint:CGPointMake(10+50* (i), kGraphBottom-[[[graphData objectAtIndex:i] objectAtIndex:1]floatValue])];    
    }
    [aPath moveToPoint:CGPointMake(10+50*graphData.count , kGraphBottom)];
    [aPath moveToPoint:CGPointMake(10 , kGraphBottom)];
    [aPath moveToPoint:CGPointMake(10 , kGraphBottom-[[[graphData objectAtIndex:0] objectAtIndex:1]floatValue])];
     [aPath closePath];
    [aPath fill];
    [aPath stroke];

得到的结果如下:

CSDN移动问答

如何给图形和x,y坐标之间充填颜色?

  • 写回答

1条回答

  • ChatGPTᴼᴾᴱᴺᴬᴵ 2023-01-05 14:30
    关注

    你可以将aPath的所有边都设置为从y轴到数据点的垂直线,然后使用closePath方法来将路径闭合。这样就可以使用fill方法来填充路径内部的区域了。


    下面是修改后的代码:

    NSMutableArray *graphData = [[NSMutableArray alloc] initWithObjects:
        [NSArray arrayWithObjects:@"2013-06-26", @"46", nil],
        [NSArray arrayWithObjects:@"2013-06-27", @"37", nil],
        [NSArray arrayWithObjects:@"2013-06-28", @"96", nil],
        [NSArray arrayWithObjects:@"2013-06-29", @"29", nil],
        [NSArray arrayWithObjects:@"2013-06-30", @"29", nil],
        [NSArray arrayWithObjects:@"2013-07-01", @"24", nil],
        nil
    ];
    
    UIBezierPath *aPath = [UIBezierPath bezierPath];
    [[UIColor blackColor] setStroke];
    [[UIColor redColor] setFill];
    
    // 从x轴开始绘制
    [aPath moveToPoint:CGPointMake(10, kGraphBottom)];
    
    for (int i = 0; i < graphData.count; i++) {
        // 从y轴到数据点绘制垂直线
        [aPath addLineToPoint:CGPointMake(10 + 50 * i, kGraphBottom - [[[graphData objectAtIndex:i] objectAtIndex:1] floatValue])];
    }
    
    // 从最后一个数据点到x轴绘制垂直线
    [aPath addLineToPoint:CGPointMake(10 + 50 * graphData.count, kGraphBottom)];
    
    // 闭合路径
    [aPath closePath];
    
    // 填充路径内部的区域
    [aPath fill];
    
    // 绘制路径
    [aPath stroke];
    

    这样就可以在图形和x,y坐标之间充填颜色了。

    评论

报告相同问题?

悬赏问题

  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示
  • ¥15 扫描项目中发现AndroidOS.Agent、Android/SmsThief.LI!tr
  • ¥15 怀疑手机被监控,请问怎么解决和防止
  • ¥15 Qt下使用tcp获取数据的详细操作
  • ¥15 idea右下角设置编码是灰色的
  • ¥15 全志H618ROM新增分区
  • ¥15 在grasshopper里DrawViewportWires更改预览后,禁用电池仍然显示
  • ¥15 NAO机器人的录音程序保存问题
  • ¥15 C#读写EXCEL文件,不同编译