18 lines
618 B
Objective-C
18 lines
618 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "BlurEffectWithAmount.h"
|
|
|
|
@interface BlurView : UIView
|
|
|
|
@property (nonatomic, copy, nullable) NSString *blurType;
|
|
@property (nonatomic, copy, nullable) NSNumber *blurAmount;
|
|
@property (nonatomic, copy, nullable) UIColor *reducedTransparencyFallbackColor;
|
|
|
|
@property (nonatomic, strong, nullable) BlurEffectWithAmount *blurEffect;
|
|
@property (nonatomic, strong, nullable) UIVisualEffectView *blurEffectView;
|
|
@property (nonatomic, strong, nullable) UIView *reducedTransparencyFallbackView;
|
|
|
|
- (void)updateBlurEffect;
|
|
- (void)updateFallbackView;
|
|
- (BOOL)useReduceTransparencyFallback;
|
|
@end
|