杨锴
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
//
//  VTMagicView.h
//  VTMagicView
//
//  Created by tianzhuo on 14-11-11.
//  Copyright (c) 2014-2016 tianzhuo. All rights reserved.
//  https://github.com/tianzhuo112/VTMagic.git
//
 
#import <UIKit/UIKit.h>
#import "VTMagicProtocol.h"
#import "VTMagicMacros.h"
#import "VTEnumType.h"
 
NS_ASSUME_NONNULL_BEGIN
 
@class VTMagicView;
 
/****************************************data source****************************************/
@protocol VTMagicViewDataSource <NSObject>
/**
 *  获取所有菜单名,数组中存放字符串类型对象
 *
 *  @param magicView self
 *
 *  @return header数组
 */
- (NSArray<__kindof NSString *> *)menuTitlesForMagicView:(VTMagicView *)magicView;
 
/**
 *  根据itemIndex加载对应的menuItem
 *
 *  @param magicView self
 *  @param itemIndex 需要加载的菜单索引
 *
 *  @return 当前索引对应的菜单按钮
 */
- (UIButton *)magicView:(VTMagicView *)magicView menuItemAtIndex:(NSUInteger)itemIndex;
 
/**
 *  根据pageIndex加载对应的页面控制器
 *
 *  @param magicView self
 *  @param pageIndex 需要加载的页面索引
 *
 *  @return 页面控制器
 */
- (UIViewController *)magicView:(VTMagicView *)magicView viewControllerAtPage:(NSUInteger)pageIndex;
 
@end
 
/****************************************delegate****************************************/
@protocol VTMagicViewDelegate <NSObject>
 
@optional
/**
 *  视图控制器显示到当前屏幕上时触发
 *
 *  @param magicView      self
 *  @param viewController 当前页面展示的控制器
 *  @param pageIndex      当前控控制器对应的索引
 */
- (void)magicView:(VTMagicView *)magicView viewDidAppear:(__kindof UIViewController *)viewController atPage:(NSUInteger)pageIndex;
 
/**
 *  视图控制器从屏幕上消失时触发
 *
 *  @param magicView      self
 *  @param viewController 消失的视图控制器
 *  @param pageIndex      消失的控制器对应的索引
 */
- (void)magicView:(VTMagicView *)magicView viewDidDisappear:(__kindof UIViewController *)viewController atPage:(NSUInteger)pageIndex;
 
/**
 *  选中导航菜单item时触发
 *
 *  @param magicView self
 *  @param itemIndex menuItem对应的索引
 */
- (void)magicView:(VTMagicView *)magicView didSelectItemAtIndex:(NSUInteger)itemIndex;
 
/**
 *  根据itemIndex获取对应menuItem的宽度,若返回结果为0,内部将自动计算其宽度
 *
 *  @param magicView self
 *  @param itemIndex menuItem对应的索引
 *
 *  @return menuItem的宽度
 */
- (CGFloat)magicView:(VTMagicView *)magicView itemWidthAtIndex:(NSUInteger)itemIndex;
 
/**
 *  根据itemIndex获取对应slider的宽度,若返回结果为0,内部将自动计算其宽度
 *
 *  @param magicView self
 *  @param itemIndex slider对应的索引
 *
 *  @return slider的宽度
 */
- (CGFloat)magicView:(VTMagicView *)magicView sliderWidthAtIndex:(NSUInteger)itemIndex;
 
@end
 
@interface VTMagicView : UIView
 
#pragma mark - basic configurations
/****************************************basic configurations****************************************/
 
/**
 *  数据源
 */
@property (nonatomic, weak, nullable) id<VTMagicViewDataSource> dataSource;
 
/**
 *  代理
 *  若delegate为UIViewController并且实现了VTMagicProtocol协议,
 *  则主控制器(mainViewController)默认与其相同
 */
@property (nonatomic, weak, nullable) id<VTMagicViewDelegate> delegate;
 
/**
 *  主控制器,若delegate遵循协议VTMagicProtocol,则默认与其相同
 *
 *  @warning 若继承或直接实例化VTMagicController,则不需要设置该属性
 */
@property (nonatomic, weak, nullable) UIViewController<VTMagicProtocol> *magicController;
 
/**
 *  切换样式,默认是VTSwitchStyleDefault
 */
@property (nonatomic, assign) VTSwitchStyle switchStyle;
 
/**
 *  导航菜单的布局样式
 */
@property (nonatomic, assign) VTLayoutStyle layoutStyle;
 
/**
 *  导航栏滑块样式,默认显示下划线
 */
@property (nonatomic, assign) VTSliderStyle sliderStyle;
 
/**
 *  导航菜单item的预览数,默认为1
 */
@property (nonatomic, assign) NSUInteger previewItems;
 
 
#pragma mark - subviews
/****************************************subviews****************************************/
 
/**
 *  最顶部的头部组件,默认隐藏
 *  若需显示请通过属性headerHidden设置
 */
@property (nonatomic, strong, readonly) UIView *headerView;
 
/**
 *  顶部导航视图
 */
@property (nonatomic, strong, readonly) UIView *navigationView;
 
/**
 *  顶部导航栏左侧视图项
 */
@property (nonatomic, strong, nullable) UIView *leftNavigatoinItem;
 
/**
 *  顶部导航栏右侧视图项
 */
@property (nonatomic, strong, nullable) UIView *rightNavigatoinItem;
 
/**
 *  当前屏幕上已加载的控制器
 */
@property (nonatomic, strong, readonly) NSArray<__kindof UIViewController *> *viewControllers;
 
/**
 *  自定义滑块视图
 */
- (void)setSliderView:(UIView *)sliderView;
 
/**
 *  自定义导航分割线视图
 */
- (void)setSeparatorView:(UIView *)separatorView;
 
 
#pragma mark - bool configurations
/****************************************bool configurations****************************************/
 
/**
 *  是否允许页面左右滑动,默认YES
 */
@property (nonatomic, assign, getter=isScrollEnabled) BOOL scrollEnabled;
 
/**
 *  是否允许导航菜单左右滑动,默认YES
 */
@property (nonatomic, assign, getter=isMenuScrollEnabled) BOOL menuScrollEnabled;
 
/**
 *  是否允许切换,包括左右滑动和点击切换,默认YES
 *  若禁止,则所有切换事件全部无响应,非特殊情况不应修改本属性
 */
@property (nonatomic, assign, getter=isSwitchEnabled) BOOL switchEnabled;
 
/**
 *  点击导航菜单切换页面时是否需要动画,默认YES
 */
@property (nonatomic, assign, getter=isSwitchAnimated) BOOL switchAnimated;
 
/**
 *  隐藏滑块
 */
@property (nonatomic, assign, getter=isSliderHidden) BOOL sliderHidden;
 
/**
 *  隐藏导航分割线
 */
@property (nonatomic, assign, getter=isSeparatorHidden) BOOL separatorHidden;
 
/**
 *  导航栏item的选中状态是否已被取消,默认NO
 */
@property (nonatomic, assign, readonly, getter=isDeselected) BOOL deselected;
 
/**
 *  顶部导航栏是否紧贴系统状态栏,即是否需要为状态栏留出20个点的区域,默认NO
 */
@property (nonatomic, assign, getter=isAgainstStatusBar) BOOL againstStatusBar;
 
/**
 *  是否隐藏头部组件,默认YES
 */
@property (nonatomic, assign, getter=isHeaderHidden) BOOL headerHidden;
/**
 *  显示或隐藏头部组件
 *
 *  @param headerHidden 是否隐藏
 *  @param duration     动画时长
 */
- (void)setHeaderHidden:(BOOL)headerHidden duration:(CGFloat)duration;
 
/**
 *  是否需要预加载下一页,默认YES,
 *  若为NO,则点击导航菜单和调用switchToPage:animated:方法切换页面时均无动画,
 *  其切换效果与属性switchAnimated为NO时相同
 */
@property (nonatomic, assign) BOOL needPreloading;
 
/**
 *  是否正在切换中,仅动画切换时为YES
 */
@property (nonatomic, assign, readonly, getter=isSwitching) BOOL switching;
 
/**
 *  页面滑到两侧边缘时是否需要反弹效果,默认NO
 */
@property (nonatomic, assign) BOOL bounces;
 
/**
 *  底部是否需要扩展一个tabbar的高度,设置毛玻璃效果时或许有用,默认NO
 */
@property (nonatomic, assign) BOOL needExtendBottom VT_DEPRECATED_IN("1.2.5");
 
 
#pragma mark - color & size configurations
/**************************************color & size**************************************/
 
/**
 *  导航菜单栏的inset,对leftNavigatoinItem和rightNavigatoinItem无效
 */
@property (nonatomic, assign) UIEdgeInsets navigationInset;
 
/**
 *  顶部导航栏背景色
 */
@property (nonatomic, strong, nullable) UIColor *navigationColor;
 
/**
 *  顶部导航条的高度,默认是44
 */
@property (nonatomic, assign) CGFloat navigationHeight;
 
/**
 *  顶部导航栏底部分割线颜色
 */
@property (nonatomic, strong, nullable) UIColor *separatorColor;
 
/**
 *  导航栏分割线高度,默认0.5个点
 */
@property (nonatomic, assign) CGFloat separatorHeight;
 
/**
 *  顶部导航栏滑块颜色
 */
@property (nonatomic, strong, nullable) UIColor *sliderColor;
 
/**
 *  顶部导航栏滑块高度,默认2
 *
 *  @warning 非VTSliderStyleDefault样式,该属性无效
 */
@property (nonatomic, assign) CGFloat sliderHeight;
 
/**
 *  顶部导航栏滑块宽度,VTSliderStyleDefault样式下默认与item宽度一致
 *
 *  @warning 非VTSliderStyleDefault样式,该属性无效
 */
@property (nonatomic, assign) CGFloat sliderWidth;
 
/**
 *  滑块宽度延长量,0表示滑块宽度与文本宽度一致,该属性优先级低于sliderWidth
 *
 *  @warning 非VTSliderStyleDefault样式或sliderWidth有效时,该属性无效
 */
@property (nonatomic, assign) CGFloat sliderExtension;
 
/**
 *  顶部导航栏滑块相对导航底部的偏移量,默认0,上偏为负
 *
 *  @warning 非VTSliderStyleDefault样式,该属性无效
 */
@property (nonatomic, assign) CGFloat sliderOffset;
 
/**
 *  气泡相对menuItem文本的edgeInsets,默认(2, 5, 2, 5)
 *
 *  @warning 该属性用于VTSliderStyleBubble样式下
 */
@property (nonatomic, assign) UIEdgeInsets bubbleInset;
 
/**
 *  滑块的圆角半径,默认10
 *
 *  @warning 该属性用于VTSliderStyleBubble样式下
 */
@property (nonatomic, assign) CGFloat bubbleRadius;
 
/**
 *  头部组件的高度默认64
 */
@property (nonatomic, assign) CGFloat headerHeight;
 
/**
 *  两个导航菜单item文本之间的间距,默认是25,其优先级低于itemWidth
 *  如果菜单item包含图片,则实际间距可能会更小
 *
 *  @warning 该属性在VTLayoutStyleDivide样式下无效
 */
@property (nonatomic, assign) CGFloat itemSpacing;
 
/**
 *  menuItem被选中时文本的放大倍数,默认1.0
 *  可根据需要设置合适的数值,通常不宜超过1.5
 */
@property (nonatomic, assign) CGFloat itemScale;
 
/**
 *  自定义item宽度,默认0,当设置改属性时,itemSpacing的设置无效
 *
 *  @warning 该属性在VTLayoutStyleDivide样式下无效
 */
@property (nonatomic, assign) CGFloat itemWidth;
 
 
#pragma mark - other properties
/**************************************other properties**************************************/
 
/**
 *  页面切换事件,用于行为统计
 */
@property (nonatomic, assign, readonly) VTSwitchEvent switchEvent;
 
 
#pragma mark - public method
/**************************************public method**************************************/
 
/**
 *  重新加载所有数据
 */
- (void)reloadData;
 
/**
 *  重新加载所有数据,同时定位到指定页面,若page越界,则自动修正为0
 *
 *  @param page 被定位的页面
 */
- (void)reloadDataToPage:(NSUInteger)pageIndex;
 
/**
 *  更新菜单标题,但不重新加载页面
 *  仅限于菜单顺序和页数不改变的情况下
 *  一般情况下建议使用reloadData方法
 */
- (void)reloadMenuTitles;
 
/**
 *  查询可重用menuItem
 *
 *  @param identifier 重用标识
 *
 *  @return 可重用的menuItem
 */
- (nullable __kindof UIButton *)dequeueReusableItemWithIdentifier:(NSString *)identifier;
 
/**
 *  根据缓存标识获取可重用的UIViewController
 *
 *  @param identifier 缓存重用标识
 *
 *  @return 可重用的UIViewController
 */
- (nullable __kindof UIViewController *)dequeueReusablePageWithIdentifier:(NSString *)identifier;
 
/**
 *  根据控制器获取对应的页面索引,仅当前显示的和预加载的控制器有相应索引,
 *  若没有找到相应索引则返回NSNotFound
 *
 *  @param viewController 页面控制器
 *
 *  @return 页面索引
 */
- (NSInteger)pageIndexForViewController:(UIViewController *)viewController;
 
/**
 *  获取索引对应的ViewController
 *  若index超出范围或对应控制器不可见,则返回nil
 *
 *  @param pageIndex 索引
 *
 *  @return UIViewController对象
 */
- (nullable __kindof UIViewController *)viewControllerAtPage:(NSUInteger)pageIndex;
 
/**
 *  根据索引获取当前页面显示的menuItem,不在窗口上显示的则为nil
 *
 *  @param index 索引
 *
 *  @return 当前索引对应的menuItem
 */
- (nullable __kindof UIButton *)menuItemAtIndex:(NSUInteger)index;
 
/**
 *  切换到指定页面
 *
 *  @param pageIndex 页面索引
 *  @param animated  是否需要动画执行
 */
- (void)switchToPage:(NSUInteger)pageIndex animated:(BOOL)animated;
 
/**
 *  处理UIPanGestureRecognizer手势,用于解决页面内嵌UIWebView时无法响应手势问题
 *
 *  @param recognizer 手势
 */
- (void)handlePanGesture:(UIPanGestureRecognizer *)recognizer;
 
/**
 *  取消菜单item的选中状态,可通过属性deselected获取当前状态
 *  取消选中后须调用方法reselectMenuItem以恢复
 */
- (void)deselectMenuItem;
 
/**
 *  恢复菜单menuItem的选中状态
 */
- (void)reselectMenuItem;
 
/**
 *  清除所有缓存的页面
 */
- (void)clearMemoryCache;
 
NS_ASSUME_NONNULL_END
 
@end