FWPopupMenuPath

@interface FWPopupMenuPath : NSObject

+ (CAShapeLayer *)maskLayerWithRect:(CGRect)rect
                         rectCorner:(UIRectCorner)rectCorner
                       cornerRadius:(CGFloat)cornerRadius
                         arrowWidth:(CGFloat)arrowWidth
                        arrowHeight:(CGFloat)arrowHeight
                      arrowPosition:(CGFloat)arrowPosition
                     arrowDirection:(FWPopupMenuArrowDirection)arrowDirection;

+ (UIBezierPath *)bezierPathWithRect:(CGRect)rect
                          rectCorner:(UIRectCorner)rectCorner
                        cornerRadius:(CGFloat)cornerRadius
                         borderWidth:(CGFloat)borderWidth
                         borderColor:(nullable UIColor *)borderColor
                     backgroundColor:(nullable UIColor *)backgroundColor
                          arrowWidth:(CGFloat)arrowWidth
                         arrowHeight:(CGFloat)arrowHeight
                       arrowPosition:(CGFloat)arrowPosition
                      arrowDirection:(FWPopupMenuArrowDirection)arrowDirection;
@end

Undocumented