-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathTOBlurView.m
50 lines (37 loc) · 981 Bytes
/
TOBlurView.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// TOBlurView.m
// TOPasscodeViewControllerExample
//
// Created by Tim Oliver on 6/3/17.
// Copyright © 2017 Timothy Oliver. All rights reserved.
//
#import "TOBlurView.h"
@implementation TOBlurView
- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
self.effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
if (self = [super initWithCoder:aDecoder]) {
self.effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
}
return self;
}
- (instancetype)initWithEffect:(UIVisualEffect *)effect
{
if (self = [super initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleDark]]) {
}
return self;
}
- (void)addSubview:(UIView *)view
{
if ([NSStringFromClass([view class]) rangeOfString:@"Backdrop"].location == NSNotFound) {
return;
}
[super addSubview:view];
}
@end