我已使用此代码创建自定义圆圈视图
//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];
我有要求我必须使用手柄重新调整起始角度和终止角度。 如何在圆圈周围创建句柄..? 如何使用触摸移动手柄
答案 0 :(得分:0)
SPUserResizableView是一个用户可调整大小的,用户可重新定位的UIView子类。现在显然它不是你需要的,但是看看这里的代码,我相信你可以找出你的应用程序需要什么。
找出你希望你的锚点去哪里,然后实现句柄。