// // UIView+YMGradient.h // MSYOUPAI // // Created by YoMi on 2023/11/7. // #import NS_ASSUME_NONNULL_BEGIN @interface UIView (YMGradient) @property (nullable, copy) NSArray *ym_colors; @property (nullable, copy) NSArray *ym_locations; @property CGPoint ym_startPoint; @property CGPoint ym_endPoint; + (UIView *_Nullable)ym_gradientViewWithColors:(NSArray *_Nullable)colors locations:(NSArray *_Nullable)locations startPoint:(CGPoint)startPoint endPoint:(CGPoint)endPoint; - (void)ym_setGradientBackgroundWithColors:(NSArray *_Nullable)colors locations:(NSArray *_Nullable)locations startPoint:(CGPoint)startPoint endPoint:(CGPoint)endPoint; @end NS_ASSUME_NONNULL_END