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