-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathBAPager.m
232 lines (199 loc) · 7.06 KB
/
BAPager.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
/*
Copyright 2011 Dmitry Stadnik. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY DMITRY STADNIK ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DMITRY STADNIK OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those of the
authors and should not be interpreted as representing official policies, either expressed
or implied, of Dmitry Stadnik.
*/
#import "BAPager.h"
#import "UIView+BACookie.h"
@implementation BAPager {
@private
UIScrollView *_scrollView;
NSUInteger _numberOfPages;
NSInteger _currentPageIndex;
}
@synthesize delegate = _delegate;
- (void)dealloc {
self.delegate = nil;
self.scrollView = nil;
[super dealloc];
}
- (id)init {
if ((self = [super init])) {
_currentPageIndex = -1;
}
return self;
}
- (UIView *)addPageAtIndex:(NSInteger)index cache:(NSMutableDictionary *)cache {
id key = [NSNumber numberWithInteger:index];
UIView *page = [cache objectForKey:key];
if (page) {
[[page retain] autorelease];
[cache removeObjectForKey:key];
} else {
page = [self.delegate pager:self pageAtIndex:index];
page.cookie = key;
NSInteger order = 0;
if ([self.delegate respondsToSelector:@selector(pager:orderOfPageAtIndex:)]) {
order = [self.delegate pager:self orderOfPageAtIndex:index];
}
[self.scrollView insertSubview:page atIndex:order];
}
return page;
}
- (void)reloadPages {
if (!self.scrollView) {
return;
}
NSMutableDictionary *cache = [NSMutableDictionary dictionaryWithCapacity:[self.scrollView.subviews count]];
for (UIView *view in [NSArray arrayWithArray:self.scrollView.subviews]) {
id cookie = view.cookie;
if (cookie && [cookie isKindOfClass:[NSNumber class]]) {
[cache setObject:view forKey:cookie];
}
}
const CGFloat pageWidth = self.scrollView.bounds.size.width;
const CGFloat pageHeight = self.scrollView.bounds.size.height;
CGFloat offset = 0;
CGFloat x = 0;
CGFloat width = pageWidth;
if (_numberOfPages > 0 && _currentPageIndex >= 0) {
if (_currentPageIndex > 0) {
// add prev page
UIView *prevPage = [self addPageAtIndex:(_currentPageIndex - 1) cache:cache];
prevPage.frame = CGRectMake(x, 0, pageWidth, pageHeight);
offset = pageWidth;
x += pageWidth;
width += pageWidth;
}
// add curr page
UIView *currPage = [self addPageAtIndex:_currentPageIndex cache:cache];
currPage.frame = CGRectMake(x, 0, pageWidth, pageHeight);
x += pageWidth;
if (_currentPageIndex < (NSInteger)(_numberOfPages - 1)) {
// add next page
UIView *nextPage = [self addPageAtIndex:(_currentPageIndex + 1) cache:cache];
nextPage.frame = CGRectMake(x, 0, pageWidth, pageHeight);
width += pageWidth;
}
}
self.scrollView.contentOffset = CGPointMake(offset, 0);
self.scrollView.contentSize = CGSizeMake(width, pageHeight);
[cache enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
if (self.delegate && [self.delegate respondsToSelector:@selector(pager:dropPageAtIndex:)]) {
[self.delegate pager:self dropPageAtIndex:[key integerValue]];
}
[obj removeFromSuperview];
}];
}
- (void)layoutPages {
if (!self.scrollView) {
return;
}
if (_numberOfPages > 0 && _currentPageIndex >= 0) {
const CGFloat pageWidth = self.scrollView.bounds.size.width;
const CGFloat pageHeight = self.scrollView.bounds.size.height;
CGFloat offset = 0;
CGFloat x = 0;
CGFloat width = pageWidth;
NSMutableDictionary *cache = [NSMutableDictionary dictionaryWithCapacity:[self.scrollView.subviews count]];
for (UIView *view in [NSArray arrayWithArray:self.scrollView.subviews]) {
id cookie = view.cookie;
if (cookie && [cookie isKindOfClass:[NSNumber class]]) {
[cache setObject:view forKey:cookie];
}
}
if (_currentPageIndex > 0) {
// layout prev page
UIView *prevPage = [cache objectForKey:[NSNumber numberWithInt:(_currentPageIndex - 1)]];
prevPage.frame = CGRectMake(x, 0, pageWidth, pageHeight);
offset = pageWidth;
x += pageWidth;
width += pageWidth;
}
// layout curr page
UIView *currPage = [cache objectForKey:[NSNumber numberWithInt:_currentPageIndex]];
currPage.frame = CGRectMake(x, 0, pageWidth, pageHeight);
x += pageWidth;
if (_currentPageIndex < (NSInteger)(_numberOfPages - 1)) {
// layout next page
UIView *nextPage = [cache objectForKey:[NSNumber numberWithInt:(_currentPageIndex + 1)]];
nextPage.frame = CGRectMake(x, 0, pageWidth, pageHeight);
width += pageWidth;
}
self.scrollView.contentOffset = CGPointMake(offset, 0);
self.scrollView.contentSize = CGSizeMake(width, pageHeight);
}
}
- (NSUInteger)numberOfPages {
return _numberOfPages;
}
- (void)setNumberOfPages:(NSUInteger)count {
if (_numberOfPages == count) {
return;
}
_numberOfPages = count;
if (_currentPageIndex >= (NSInteger)count) {
_currentPageIndex = count - 1;
if (self.delegate && [self.delegate respondsToSelector:@selector(pager:currentPageDidChangeTo:)]) {
[self.delegate pager:self currentPageDidChangeTo:_currentPageIndex];
}
}
[self reloadPages];
}
- (NSInteger)currentPageIndex {
return _currentPageIndex;
}
- (void)setCurrentPageIndex:(NSInteger)index {
if (index < -1) {
index = -1;
} else if (index >= (NSInteger)self.numberOfPages) {
index = self.numberOfPages - 1;
}
if (_currentPageIndex == index) {
return;
}
_currentPageIndex = index;
if (self.delegate && [self.delegate respondsToSelector:@selector(pager:currentPageDidChangeTo:)]) {
[self.delegate pager:self currentPageDidChangeTo:_currentPageIndex];
}
[self reloadPages];
}
- (UIScrollView *)scrollView {
return _scrollView;
}
- (void)setScrollView:(UIScrollView *)scrollView {
if (_scrollView == scrollView) {
return;
}
[_scrollView release];
_scrollView = [scrollView retain];
_scrollView.delegate = self;
[self reloadPages];
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
CGFloat offset = scrollView.contentOffset.x;
NSInteger localIndex = offset / scrollView.bounds.size.width;
if (self.currentPageIndex > 0) {
localIndex--;
}
self.currentPageIndex += localIndex;
[super scrollViewDidEndDecelerating:scrollView];
}
@end