2015-10-05 20:41:32 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
2017-04-15 09:55:46 +00:00
|
|
|
#import "BlurEffectWithAmount.h"
|
2015-10-05 20:41:32 +00:00
|
|
|
|
2015-10-05 22:11:17 +00:00
|
|
|
@interface BlurView : UIView
|
2015-10-05 20:41:32 +00:00
|
|
|
|
|
|
|
@property (nonatomic, copy) NSString *blurType;
|
2016-10-27 07:19:43 +00:00
|
|
|
@property (nonatomic, copy) NSNumber *blurAmount;
|
2015-10-05 20:41:32 +00:00
|
|
|
|
2017-04-15 09:55:46 +00:00
|
|
|
@property (nonatomic, strong) BlurEffectWithAmount *blurEffect;
|
|
|
|
@property (nonatomic, strong) UIVisualEffectView *blurEffectView;
|
|
|
|
|
|
|
|
- (void)updateBlurEffect;
|
2016-10-27 07:19:43 +00:00
|
|
|
@end
|