Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to the Xcode world. I need to complete an ellipse if the user just draw an arc with a free hand. Till now i am able to draw ellipse by using CGRectMake but the problem is that the end point which i am getting after touchesEnded, it starts making rectangle from there. What i need is if we can find the control point of the arc then the rectangle could be made from there

Here's the code

- (void)drawRect:(CGRect)rect
{

    [[UIColor redColor] setStroke];
    for (UIBezierPath *_path in pathArray) 
    [_path strokeWithBlendMode:kCGBlendModeNormal alpha:1.0];
    if([touchend isEqualToString:@"1"])
    {
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(context, 4.0);

    CGRect rectangle = CGRectMake(xcor,ycor,100,80);
    CGContextAddEllipseInRect(context, rectangle);
    CGContextStrokePath(context);
    }

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    myPath=[[UIBezierPath alloc]init];
    myPath.lineWidth=5;


    UITouch *mytouch=[[touches allObjects] objectAtIndex:0];
    [myPath moveToPoint:[mytouch locationInView:self]];
    [pathArray addObject:myPath];

}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{

    UITouch *mytouch=[[touches allObjects] objectAtIndex:0];
    [myPath addLineToPoint:[mytouch locationInView:self]];
    [self setNeedsDisplay];

}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];
    CGPoint touchPoint = [touch locationInView:self];
    NSLog(@"%f %f", touchPoint.x, touchPoint.y);
     xcor = (int)(touchPoint.x);
    //xcor=&touchPoint.x;
    ycor=(int) (touchPoint.y);

    enter code here
    [self setNeedsDisplay];
    touchend=@"1";
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.