2013-10-01 3 views
0

내 그린 선이 UIImageView와 교차하는지 감지 할 수 있습니까?CGContext 및 UIImageView 교차 검출

어쨌든 인터넷은별로 도움이되지 않습니다. 그러나 미리 감사드립니다!

- (void)drawRect:(CGRect)rect { 

    context = UIGraphicsGetCurrentContext(); 

    CGContextSetLineWidth(context, 2.0); 

    CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor); 

    CGContextMoveToPoint(context, 384, 435); 
    CGContextAddLineToPoint(context, 494, 402); 
    CGContextAddLineToPoint(context, 537, 419); 
    CGContextAddLineToPoint(context, 544, 450); 
    CGContextAddLineToPoint(context, 494, 488); 

    NSLog(@"%@", NSStringFromCGRect(recting)); 

    CGContextStrokePath(context); 
} 

답변

0

드래그하는 동안 UIImageView와의 교차를 확인할 수 있습니다. 1. CGRect frame = imageView.frame; 2. 현재 끌기 위치가 프레임의 하위 집합이면 충돌이 진행 중임을 의미합니다. 당신의 viewDidLoad에서

CGPoint location = [touch locationInView:touch.view]; 
if(location.x>=frame.origin.x && location.x<= frame.origin.x+frame.size.width){ 
//collision with UIImageView 
} 
+0

하지만 어떻게 CGContext를 CGRect로 변환 할 수 있습니까? – AmiiQo

0

또는 viewDidAppear 추가 팬 제스처

UIPanGestureRecognizer *pan=[[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(panned:)]; 
[self.view addGestureRecognizer:pan]; 

** 이미지 **

-(void)panned:(UIPanGestureRecognizer *)panned 
{ 
    CGPoint currentPoint=[panned locationInView:self.imageView]; 
    CGFloat width=self.imageView.bounds.size.width; 
     CGFloat height=self.imageView.bounds.size.height; 
    CGRect newRect=CGRectMake(currentPoint.x, currentPoint.y, width, height); 
    if (CGRectIntersectsRect(newRect, line.frame)) { 
     NSLog(@"intersects"); 


    } 
    else{ 
     NSLog(@"doesnt interesct"); 
    } 


} 

line.frame 선을 그립니다 UIView의입니다 주위 패닝

희망이 도움이됩니다.

+0

코드를 추가했습니다. 불행히도 작동하지 않습니다. – AmiiQo

+0

나는 그려진 선과 교차하는지, 전체보기가 아닌지 알아 내고 싶습니다. – AmiiQo

+0

그려진 선은 UIView 객체가 아닙니까? – vin