3

如何以编程方式在 iphone 中以半圆形图案绘制点?

4

2 回答 2

2

我确实使用了下面的代码

    CGContextRef ctx = UIGraphicsGetCurrentContext();

float angle = 0;

float centerX = self.frame.size.width/2;
float centerY = self.frame.size.width/2;

float startX = 0.0;
float startY = 0.0;
for (int i = 0; i < 8 ; i++) {

    startX = centerX +  cos(angle) * (radius + 50) - 5  ;
    startY = centerY +  sin(angle) * (radius + 50 ) - 5;
    CGContextFillEllipseInRect(ctx, CGRectMake(startX,  startY,  5, 5));
    [[UIColor blackColor] setStroke];
    angle-= M_PI/7;
}
于 2013-08-19T11:51:07.377 回答
1

你可以这样 Quartz_2D:-

- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(context, 20.0);
    CGContextSetStrokeColorWithColor(context, 
       [UIColor blueColor].CGColor);
    CGFloat dashArray[] = {2,6,4,2};
    CGContextSetLineDash(context, 3, dashArray, 4);
    CGContextMoveToPoint(context, 10, 200);
    CGContextAddQuadCurveToPoint(context, 150, 10, 300, 200);
    CGContextStrokePath(context);
}

查看以下所有绘图示例:-

http://www.techotopia.com/index.php/An_iOS_5_iPhone_Graphics_Drawing_Tutorial_using_Quartz_2D

于 2013-08-19T10:28:24.377 回答