Is there any method in iPhone to find the intersection of two custom UIView (lets say two views are circular and are in same super view).
If there is no such method, what is the best way to achieve this goal.
Is there any method in iPhone to find the intersection of two custom UIView
Share
UIViews are all of rectangular shape.If you need custom shapes, you need to check for yourself. With circular shapes, this is not complicated (take distance of centers and the radius of each one).