내 그린 선이 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);
}
하지만 어떻게 CGContext를 CGRect로 변환 할 수 있습니까? – AmiiQo