如何检测我的绘制线是否与我拖动的 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);
}