8 lines
224 B
C
8 lines
224 B
C
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface BlurEffectWithAmount : UIBlurEffect
|
||
|
@property (nonatomic, strong) NSNumber *blurAmount;
|
||
|
|
||
|
+ (instancetype)effectWithStyle:(UIBlurEffectStyle)style andBlurAmount:(NSNumber*)blurAmount;
|
||
|
@end
|