杨锴
2025-04-16 09a372bc45fde16fd42257ab6f78b8deeecf720b
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
//
//  VTContentView.m
//  VTMagicView
//
//  Created by tianzhuo on 14/12/29.
//  Copyright (c) 2014年 tianzhuo. All rights reserved.
//
 
#import "VTContentView.h"
#import "UIViewController+VTMagic.h"
#import "UIScrollView+VTMagic.h"
 
@interface VTContentView()
 
@property (nonatomic, strong) NSMutableDictionary *visibleDict; // 屏幕上可见的控制器
@property (nonatomic, strong) NSMutableArray *indexList; // 索引集合
@property (nonatomic, strong) NSMutableArray *frameList; // 控制器的坐标集合
@property (nonatomic, strong) NSString *identifier; // 重用标识符
@property (nonatomic, strong) NSCache *pageCache; // 缓存池
 
@end
 
@implementation VTContentView
 
#pragma mark - Lifecycle
 
- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        _needPreloading = YES;
        _indexList = [[NSMutableArray alloc] init];
        _frameList = [[NSMutableArray alloc] init];
        _visibleDict = [[NSMutableDictionary alloc] init];
        _pageCache = [[NSCache alloc] init];
        _pageCache.name = @"com.tianzhuo.magic";
        _pageCache.countLimit = 10;
        
#if TARGET_OS_IPHONE
        [[NSNotificationCenter defaultCenter] addObserver:self
                                                 selector:@selector(clearMemoryCache)
                                                     name:UIApplicationDidReceiveMemoryWarningNotification
                                                   object:nil];
#endif
    }
    return self;
}
 
- (void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
 
- (void)layoutSubviews {
    [super layoutSubviews];
    
    if (CGRectIsEmpty(self.frame)) {
        return;
    }
    
    CGFloat offset = self.contentOffset.x;
    CGFloat width = self.frame.size.width;
    BOOL isNotBorder = 0 != (int)offset%(int)width;
    NSInteger currentPage = offset/self.frame.size.width;
    if (_currentPage == currentPage && isNotBorder) {
        return;
    }
    
    _currentPage = currentPage;
    CGRect frame = CGRectZero;
    UIViewController *viewController = nil;
    NSArray *pathList = [_visibleDict allKeys];
    for (NSIndexPath *indexPath in pathList) {
        frame = [_frameList[indexPath.row] CGRectValue];
        viewController = _visibleDict[indexPath];
        // 控制器若移出屏幕则将其视图从父类中移除,并添加到缓存池中
        if (![self vtm_isNeedDisplayWithFrame:frame preloading:_needPreloading]) {
            [self moveViewControllerToCache:viewController];
            [_visibleDict removeObjectForKey:indexPath];
        } else {
            viewController.view.frame = frame;
        }
    }
    
    NSMutableArray *tempPaths = [_indexList mutableCopy];
    [tempPaths removeObjectsInArray:pathList];
    for (NSIndexPath *indexPath in tempPaths) {
        frame = [_frameList[indexPath.row] CGRectValue];
        if ([self vtm_isNeedDisplayWithFrame:frame preloading:_needPreloading]) {
            [self loadViewControllerAtIndexPath:indexPath];
        }
    }
}
 
#pragma mark - functional methods
- (void)reloadData {
    [self resetCacheData];
    [self resetPageFrames];
    [self setNeedsLayout];
    [self layoutIfNeeded];
}
 
-(void)resetCacheData {
    [_indexList removeAllObjects];
    for (NSInteger i = 0; i < _pageCount; i++) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
        [_indexList addObject:indexPath];
    }
    
    // reload时清除所有页面
    NSArray *viewControllers = [_visibleDict allValues];
    for (UIViewController *viewController in viewControllers) {
        [self moveViewControllerToCache:viewController];
    }
    [_visibleDict removeAllObjects];
}
 
- (void)moveViewControllerToCache:(UIViewController *)viewController {
    [viewController willMoveToParentViewController:nil];
    [viewController.view removeFromSuperview];
    [viewController removeFromParentViewController];
    
    // 添加到缓存池
    NSMutableSet *cacheSet = [_pageCache objectForKey:viewController.reuseIdentifier];
    if (!cacheSet) cacheSet = [[NSMutableSet alloc] init];
    [cacheSet addObject:viewController];
    [_pageCache setObject:cacheSet forKey:viewController.reuseIdentifier];
}
 
- (void)resetPageFrames {
    [_frameList removeAllObjects];
    CGRect frame = self.bounds;
    for (NSIndexPath *indexPath in _indexList) {
        frame.origin.x = indexPath.row * frame.size.width;
        [_frameList addObject:[NSValue valueWithCGRect:frame]];
    }
    self.contentSize = CGSizeMake(CGRectGetMaxX(frame), 0);
    self.contentOffset = CGPointMake(CGRectGetWidth(frame)*_currentPage, 0);
}
 
#pragma mark - 根据页面控制器获取对应的索引
- (NSInteger)pageIndexForViewController:(UIViewController *)viewController {
    for (NSIndexPath *indexPath in _visibleDict.allKeys) {
        if ([viewController isEqual:_visibleDict[indexPath]]) {
            return indexPath.row;
        }
    }
    return NSNotFound;
}
 
- (CGRect)frameOfViewControllerAtPage:(NSUInteger)pageIndex
{
    if (_frameList.count <= pageIndex) {
        return CGRectZero;
    }
    return [_frameList[pageIndex] CGRectValue];
}
 
#pragma mark - 根据索引获取页面控制器
- (UIViewController *)viewControllerAtPage:(NSUInteger)pageIndex {
    return [self viewControllerAtPage:pageIndex autoCreate:NO];
}
 
- (UIViewController *)creatViewControllerAtPage:(NSUInteger)pageIndex {
    return [self viewControllerAtPage:pageIndex autoCreate:YES];
}
 
- (UIViewController *)viewControllerAtPage:(NSUInteger)pageIndex autoCreate:(BOOL)autoCreate {
    if (_pageCount <= pageIndex) {
        return nil;
    }
    
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:pageIndex inSection:0];
    UIViewController *viewController = [_visibleDict objectForKey:indexPath];
    if (!viewController && autoCreate) {
        viewController = [self loadViewControllerAtIndexPath:indexPath];
    }
    return viewController;
}
 
- (UIViewController *)loadViewControllerAtIndexPath:(NSIndexPath *)indexPath {
    UIViewController *viewController = [_dataSource contentView:self viewControllerAtPage:indexPath.row];
    if (viewController) {
        viewController.reuseIdentifier = _identifier;
        CGRect pageFrame = [_frameList[indexPath.row] CGRectValue];
        viewController.view.frame = pageFrame;
        [self addSubview:viewController.view];
        [_visibleDict setObject:viewController forKey:indexPath];
    }
    _identifier = nil;
    return viewController;
}
 
#pragma mark - 根据缓存标识查询可重用的视图控制器
- (UIViewController *)dequeueReusablePageWithIdentifier:(NSString *)identifier {
    _identifier = identifier;
    NSMutableSet *cacheSet = [_pageCache objectForKey:identifier];
    UIViewController *viewController = [cacheSet anyObject];
    if (viewController) {
        [cacheSet removeObject:viewController];
        [_pageCache setObject:cacheSet forKey:identifier];
    }
    return viewController;
}
 
#pragma mark - clear memory cache
- (void)clearMemoryCache {
    [_pageCache removeAllObjects];
}
 
#pragma mark - accessor methods
- (NSArray *)visibleList {
    return [_visibleDict allValues];
}
 
@end