Fork me on GitHub

计算一个点是否在一个区域中

iOS有时候需要判断是否touch到某个图的区域中。这里做了个小示例,通过CGPath创建一个区域,区域是由路径做两点间线段并闭合成的区域,比如这里创建了一个简单的矩形。然后就可以用CGPath相关函数判断点是否在区域里了。

- (void)viewDidLoad { 
    [super viewDidLoad]; 
    
    CGMutablePathRef pathRef=CGPathCreateMutable(); 
    CGPathMoveToPoint(pathRef, NULL, 4, 4); 
    CGPathAddLineToPoint(pathRef, NULL, 4, 8); 
    CGPathAddLineToPoint(pathRef, NULL, 10, 4); 
    CGPathAddLineToPoint(pathRef, NULL, 4, 4); 
    CGPathCloseSubpath(pathRef); 
    
    CGPoint point=CGPointMake(5,7); 
    CGPoint outPoint=CGPointMake(5,10); 
    
    if (CGPathContainsPoint(pathRef, NULL, point, NO)) { 
        NSLog(@"point in path!"); 
    } 
    
    if (!CGPathContainsPoint(pathRef, NULL, outPoint, NO)) { 
        NSLog(@"outPoint out path!"); 
    }

posted on 2012-02-10 11:48  pengyingh  阅读(541)  评论(0)    收藏  举报

导航