29 lines
642 B
Objective-C
29 lines
642 B
Objective-C
|
|
|
|
// Created by P on 2024/11/18.
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIView (GradientLayer)
|
|
|
|
|
|
- (void)addGradientBackgroundWithColors:(NSArray<UIColor *> *)colors
|
|
startPoint:(CGPoint)startPoint
|
|
endPoint:(CGPoint)endPoint
|
|
cornerRadius:(CGFloat)cornerRadius;
|
|
|
|
|
|
- (void)removeGradientBackground;
|
|
|
|
|
|
- (void)updateGradientBackgroundWithColors:(NSArray<UIColor *> *)colors
|
|
startPoint:(CGPoint)startPoint
|
|
endPoint:(CGPoint)endPoint;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|