菜鸟教程小白 发表于 2022-12-12 10:36:44

ios - 获取与线IOS相交的所有 View


                                            <p><p>我有一个小的(30X30 大小)UIView 网格,我通过使用以下代码在屏幕上点击两个点作为起点和终点在它们上面画一条线:</p>

<pre><code>CGContextRef context = UIGraphicsGetCurrentContext();
CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB();
CGFloat components[] = {244.0f/255.0f, 226.0f/255.0f, 119.0f/255.0f, 0.8};
CGColorRef color = CGColorCreate(colorspace, components);
CGContextSetStrokeColorWithColor(context, color);
CGContextSetLineWidth(context, 20.0);
CGContextMoveToPoint(context, startPoint.x, startPoint.y);
CGContextAddLineToPoint(context, endPoint.x, endPoint.y);
CGContextStrokePath(context);
CGColorSpaceRelease(colorspace);
CGColorRelease(color);
</code></pre>

<p>点击屏幕上的两个点并绘制一条线可以正常工作,但我如何让所有 View 都与线相交?
我想在 touches end 方法中获得这些 View 。 </p>

<pre><code>- (void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
CGPoint pt = [ locationInView:alphabetView];
UIView *touched = ;
CGPoint p = touched.center;
// code here to get view list.
}
</code></pre>

<p>任何帮助将不胜感激。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果满足以下条件,一条线段(从 A 点到 B 点)与一个矩形( View 框架)相交:</p>

<ol>
<li>线段与 4 个矩形边中的任何一个相交,<strong><em>或</em></strong></li>
<li>A 点和 B 点都在矩形内。</li>
</ol>

<p>如果 (1) 和 (2) 的答案都是 NO,则线段不与
矩形。</p>

<p>函数 <code>checkLineIntersection</code> 来自 <a href="https://stackoverflow.com/a/14301701/1187415" rel="noreferrer noopener nofollow">this answer</a>可能
有助于检查条件 (1)。</p>

<p><code>CGRectContainsPoint()</code> 可用于检查条件(2)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 获取与线IOS相交的所有 View ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16052696/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16052696/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 获取与线IOS相交的所有 View