HYPPluginHelper

@interface HYPPluginHelper : NSObject

Provides helper methods that should be common tasks among plugins.

  • Retrieves a list of subviews that intersect a certain a point.

    Declaration

    Objective-C

    + (NSMutableArray *)findSubviewsInView:(id)view
                         intersectingPoint:(CGPoint)point;

    Swift

    class func findSubviews(inView view: Any!, intersecting point: CGPoint) -> NSMutableArray!

    Parameters

    view

    The view to find intersecting subviews.

    point

    The point at which an intersection of the views should .