17 lines
540 B
Objective-C
17 lines
540 B
Objective-C
|
|
|
|
#import <UIKit/UIKit.h>
|
|
//毛玻璃效果
|
|
@interface UIImage (ImageEffects)
|
|
|
|
- (UIImage *)applyLightEffect;
|
|
- (UIImage *)applyExtraLightEffect;
|
|
- (UIImage *)applyDarkEffect;
|
|
- (UIImage *)applyTintEffectWithColor:(UIColor *)tintColor;
|
|
|
|
- (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage;
|
|
//圆环
|
|
-(UIImage *)circleImageWithName:(NSString *)name borderWidth:(CGFloat)borderWidth borderColour:(UIColor *)borderColor;
|
|
|
|
@end
|