forked from skywinder/ActionSheetPicker-3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSWActionSheet.m
235 lines (194 loc) · 6.47 KB
/
SWActionSheet.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
//
// Created by Petr Korolev on 11/08/14.
//
#import "SWActionSheet.h"
static const float delay = 0.f;
static const float duration = .25f;
static const enum UIViewAnimationOptions options = UIViewAnimationOptionCurveEaseIn;
@interface SWActionSheetVC : UIViewController
@property (nonatomic, retain) SWActionSheet *actionSheet;
@end
@interface SWActionSheet ()
{
UIWindow *SWActionSheetWindow;
}
@property (nonatomic, assign) BOOL presented;
@property (nonatomic) UIWindowLevel windowLevel;
- (void)configureFrameForBounds:(CGRect)bounds;
- (void)showInContainerViewAnimated:(BOOL)animated;
@end
@implementation SWActionSheet
{
UIView *view;
UIView *_bgView;
}
- (void)dismissWithClickedButtonIndex:(int)i animated:(BOOL)animated
{
CGPoint fadeOutToPoint = CGPointMake(view.center.x,
self.center.y + CGRectGetHeight(view.frame));
// Window of app
//UIWindow *appWindow = [UIApplication sharedApplication].windows.firstObject;
// Actions
void (^actions)(void) = ^{
self.center = fadeOutToPoint;
self.backgroundColor = [UIColor colorWithWhite:0.f alpha:0.0f];
};
void (^completion)(BOOL) = ^(BOOL finished) {
// if (![appWindow isKeyWindow])
// [appWindow makeKeyAndVisible];
[self destroyWindow];
[self removeFromSuperview];
};
// Do actions animated or not
if (animated) {
[UIView animateWithDuration:duration delay:delay options:options animations:actions completion:completion];
} else {
actions();
completion(YES);
}
self.presented = NO;
}
- (void)destroyWindow
{
if (SWActionSheetWindow)
{
[self actionSheetContainer].actionSheet = nil;
SWActionSheetWindow.hidden = YES;
if ([SWActionSheetWindow isKeyWindow])
[SWActionSheetWindow resignFirstResponder];
SWActionSheetWindow.rootViewController = nil;
SWActionSheetWindow = nil;
}
}
- (UIWindow *)window
{
if ( SWActionSheetWindow )
{
return SWActionSheetWindow;
}
else
{
UIWindow *window = nil;
if (@available(iOS 13.0, *)) {
UIScene *scene = [UIApplication sharedApplication].connectedScenes.allObjects.firstObject;
if (scene && [scene isKindOfClass:[UIWindowScene class]]) {
UIWindowScene *windowScene = (UIWindowScene *)scene;
window = [[UIWindow alloc] initWithWindowScene:windowScene];
}
}
if (window == nil) {
window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
}
window.windowLevel = self.windowLevel;
window.backgroundColor = [UIColor clearColor];
window.rootViewController = [SWActionSheetVC new];
SWActionSheetWindow = window;
return SWActionSheetWindow;
}
}
- (SWActionSheetVC *)actionSheetContainer
{
return (SWActionSheetVC *) [self window].rootViewController;
}
- (instancetype)initWithView:(UIView *)aView windowLevel:(UIWindowLevel)windowLevel
{
if ((self = [super init]))
{
view = aView;
_windowLevel = windowLevel;
self.backgroundColor = [UIColor colorWithWhite:0.f alpha:0.0f];
_bgView = [UIView new];
_bgView.backgroundColor = [UIColor colorWithRed:247.f/255.f green:247.f/255.f blue:247.f/255.f alpha:1.0f];
[self addSubview:_bgView];
[self addSubview:view];
}
return self;
}
- (void)configureFrameForBounds:(CGRect)bounds
{
self.frame = CGRectMake(bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height + view.bounds.size.height);
view.frame = CGRectMake(view.bounds.origin.x, bounds.size.height, view.bounds.size.width, view.bounds.size.height);
view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin;
_bgView.frame = view.frame;
_bgView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
}
- (void)showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated
{
[self showInContainerView];
}
- (void)showInContainerView
{
// Make sheet window visible and active
UIWindow *sheetWindow = [self window];
if (![sheetWindow isKeyWindow])
[sheetWindow makeKeyAndVisible];
sheetWindow.hidden = NO;
// Put our ActionSheet in Container (it will be presented as soon as possible)
self.actionSheetContainer.actionSheet = self;
}
- (void)showInContainerViewAnimated:(BOOL)animated
{
CGPoint toPoint;
CGFloat y = self.center.y - CGRectGetHeight(view.frame);
toPoint = CGPointMake(self.center.x, y);
// Present actions
void (^animations)(void) = ^{
self.center = toPoint;
self.backgroundColor = [UIColor colorWithWhite:0.f alpha:0.5f];
};
// Present sheet
if (animated)
[UIView animateWithDuration:duration delay:delay options:options animations:animations completion:nil];
else
animations();
self.presented = YES;
}
@end
#pragma mark - SWActionSheet Container
@implementation SWActionSheetVC
- (UIStatusBarStyle)preferredStatusBarStyle {
return [UIApplication sharedApplication].statusBarStyle;
}
- (void)setActionSheet:(SWActionSheet *)actionSheet
{
// Prevent processing one action sheet twice
if (_actionSheet == actionSheet)
return;
// Dissmiss previous action sheet if it presented
if (_actionSheet.presented)
[_actionSheet dismissWithClickedButtonIndex:0 animated:YES];
// Remember new action sheet
_actionSheet = actionSheet;
// Present new action sheet
[self presentActionSheetAnimated:YES];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self presentActionSheetAnimated:YES];
}
- (void)presentActionSheetAnimated:(BOOL)animated
{
// New action sheet will be presented only when view controller will be loaded
if (_actionSheet && [self isViewLoaded] && !_actionSheet.presented)
{
[_actionSheet configureFrameForBounds:self.view.bounds];
_actionSheet.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.view addSubview:_actionSheet];
[_actionSheet showInContainerViewAnimated:animated];
}
}
- (BOOL)prefersStatusBarHidden {
return [UIApplication sharedApplication].statusBarHidden;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return NO;
}
// iOS6 support
// ---
- (BOOL)shouldAutorotate
{
return YES;
}
@end