14 lines
349 B
Objective-C
14 lines
349 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "BlurEffectWithAmount.h"
|
|
|
|
@interface BlurView : UIView
|
|
|
|
@property (nonatomic, copy) NSString *blurType;
|
|
@property (nonatomic, copy) NSNumber *blurAmount;
|
|
|
|
@property (nonatomic, strong) BlurEffectWithAmount *blurEffect;
|
|
@property (nonatomic, strong) UIVisualEffectView *blurEffectView;
|
|
|
|
- (void)updateBlurEffect;
|
|
@end
|