0

このコードでカスタム サークル ビューを作成しました

//Color Declaration
    UIColor *color = [UIColor colorWithRed:0 green:0.429 blue:0 alpha:1];

    //Drawing Circle
    CGRect circleRect = CGRectMake(20, 20, 170, 170);
    UIBezierPath *circlePath = [UIBezierPath bezierPath];
    [circlePath addArcWithCenter:CGPointMake(CGRectGetMidX(circleRect), CGRectGetMidY(circleRect))
                          radius:CGRectGetWidth(circleRect)/2 startAngle:0 * M_PI/180
                        endAngle:289 * M_PI/180
                       clockwise:YES];
    [circlePath addLineToPoint:CGPointMake(CGRectGetMidX(circleRect), CGRectGetMidY(circleRect))];
    [circlePath closePath];


    [color setFill];
    [circlePath fill];

ハンドルを使用して開始角度と終了角度のサイズを変更する必要があるという要件があります。円の周りにハンドルを作成する方法..? タッチを使用してハンドルを移動する方法

4

1 に答える 1