|
@@ -13,13 +13,9 @@
|
|
NSInteger footerViewIndex;
|
|
NSInteger footerViewIndex;
|
|
CGFloat sonChildVCHeight;
|
|
CGFloat sonChildVCHeight;
|
|
CGFloat sonChildVCY;
|
|
CGFloat sonChildVCY;
|
|
- CGRect pageDataFrame;
|
|
|
|
- CGRect pageUpScFrame;
|
|
|
|
}
|
|
}
|
|
//当前子控制器中的滚动视图
|
|
//当前子控制器中的滚动视图
|
|
@property(nonatomic,strong)UIScrollView *currentScroll;
|
|
@property(nonatomic,strong)UIScrollView *currentScroll;
|
|
-//子控制器中的滚动视图数组(底部有多层的情况)
|
|
|
|
-@property(nonatomic,strong)NSArray *currentScrollArr;
|
|
|
|
//当前子控制器中需要固定的底部视图
|
|
//当前子控制器中需要固定的底部视图
|
|
@property(nonatomic,strong)UIView *currentFootView;
|
|
@property(nonatomic,strong)UIView *currentFootView;
|
|
//头部视图
|
|
//头部视图
|
|
@@ -44,10 +40,61 @@
|
|
@property (nonatomic, assign) CGFloat headHeight;
|
|
@property (nonatomic, assign) CGFloat headHeight;
|
|
@end
|
|
@end
|
|
@implementation WMZPageController
|
|
@implementation WMZPageController
|
|
|
|
+//更新
|
|
|
|
+- (void)updatePageController{
|
|
|
|
+ [self.upSc removeFromSuperview];
|
|
|
|
+ [self.downSc removeFromSuperview];
|
|
|
|
+ self.downSc = [[WMZPageScroller alloc]initWithFrame:CGRectMake(0, 0, PageVCWidth, PageVCHeight) style:UITableViewStyleGrouped];
|
|
|
|
+ [self.sonChildScrollerViewDic removeAllObjects];
|
|
|
|
+ [self.sonChildFooterViewDic removeAllObjects];
|
|
|
|
+ [self.rectArr removeAllObjects];
|
|
|
|
+ footerViewIndex = -1;
|
|
|
|
+ for (UIViewController *VC in self.childViewControllers) {
|
|
|
|
+ [VC willMoveToParentViewController:nil];
|
|
|
|
+ [VC.view removeFromSuperview];
|
|
|
|
+ [VC removeFromParentViewController];
|
|
|
|
+ }
|
|
|
|
+ [self setParam];
|
|
|
|
+ [self UI];
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//更新头部
|
|
|
|
+- (void)updateHeadView{
|
|
|
|
+ [self setUpHead];
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+*底部手动滚动 传入CGPointZero则为吸顶临界点
|
|
|
|
+*/
|
|
|
|
+- (void)downScrollViewSetOffset:(CGPoint)point animated:(BOOL)animat;{
|
|
|
|
+ if (CGPointEqualToPoint(point, CGPointZero)) {
|
|
|
|
+ //顶点
|
|
|
|
+ int topOffset = self.downSc.contentSize.height - self.downSc.frame.size.height;
|
|
|
|
+ if (!self.parentViewController) {
|
|
|
|
+ topOffset -=PageVCStatusBarHeight;
|
|
|
|
+ }else{
|
|
|
|
+ if (!self.param.wFromNavi) {
|
|
|
|
+ topOffset -=PageVCNavBarHeight;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ point = CGPointMake(self.downSc.contentOffset.x, topOffset);
|
|
|
|
+ }
|
|
|
|
+ [self.downSc setContentOffset:point animated:animat];
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
- (void)viewDidLoad{
|
|
- (void)viewDidLoad{
|
|
self.view.backgroundColor = [UIColor whiteColor];
|
|
self.view.backgroundColor = [UIColor whiteColor];
|
|
|
|
+ dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.01 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
|
|
+ [self setParam];
|
|
|
|
+ [self UI];
|
|
|
|
+ if (self.naviBarBackGround&&self.param.wNaviColor) {
|
|
|
|
+ self.naviBarBackGround.backgroundColor = self.param.wNaviColor;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
- (void)viewWillDisappear:(BOOL)animated{
|
|
- (void)viewWillDisappear:(BOOL)animated{
|
|
[super viewWillDisappear:animated];
|
|
[super viewWillDisappear:animated];
|
|
if (self.naviBarBackGround&&self.param.wNaviAlpha) {
|
|
if (self.naviBarBackGround&&self.param.wNaviAlpha) {
|
|
@@ -125,11 +172,6 @@
|
|
self.param.wMenuAnimal == PageTitleMenuPDD) {
|
|
self.param.wMenuAnimal == PageTitleMenuPDD) {
|
|
self.param.wMenuAnimalTitleBig = NO;
|
|
self.param.wMenuAnimalTitleBig = NO;
|
|
self.param.wMenuAnimalTitleGradient = NO;
|
|
self.param.wMenuAnimalTitleGradient = NO;
|
|
- if (self.param.wMenuAnimal == PageTitleMenuPDD) {
|
|
|
|
- if (!self.param.wMenuIndicatorWidth) {
|
|
|
|
- self.param.wMenuIndicatorWidth = 25;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
if (self.param.wMenuAnimal == PageTitleMenuYouKu) {
|
|
if (self.param.wMenuAnimal == PageTitleMenuYouKu) {
|
|
@@ -155,6 +197,7 @@
|
|
|
|
|
|
|
|
|
|
- (void)UI{
|
|
- (void)UI{
|
|
|
|
+
|
|
self.cache = [NSCache new];
|
|
self.cache = [NSCache new];
|
|
self.cache.countLimit = 30;
|
|
self.cache.countLimit = 30;
|
|
footerViewIndex = -1;
|
|
footerViewIndex = -1;
|
|
@@ -162,20 +205,18 @@
|
|
CGFloat tabbarHeight = 0;
|
|
CGFloat tabbarHeight = 0;
|
|
CGFloat statusBarHeight = 0;
|
|
CGFloat statusBarHeight = 0;
|
|
if (self.presentingViewController) {
|
|
if (self.presentingViewController) {
|
|
-
|
|
|
|
if (!self.navigationController) {
|
|
if (!self.navigationController) {
|
|
statusBarHeight = PageVCStatusBarHeight;
|
|
statusBarHeight = PageVCStatusBarHeight;
|
|
}
|
|
}
|
|
} else if (self.tabBarController) {
|
|
} else if (self.tabBarController) {
|
|
-
|
|
|
|
if (!self.tabBarController.tabBar.translucent) {
|
|
if (!self.tabBarController.tabBar.translucent) {
|
|
tabbarHeight = 0;
|
|
tabbarHeight = 0;
|
|
}else{
|
|
}else{
|
|
tabbarHeight = PageVCTabBarHeight;
|
|
tabbarHeight = PageVCTabBarHeight;
|
|
}
|
|
}
|
|
} else if (self.navigationController){
|
|
} else if (self.navigationController){
|
|
-
|
|
|
|
headY = (!self.param.wFromNavi&&
|
|
headY = (!self.param.wFromNavi&&
|
|
|
|
+ self.param.wMenuPosition != PageMenuPositionNavi&&
|
|
self.param.wMenuPosition != PageMenuPositionBottom)?0:
|
|
self.param.wMenuPosition != PageMenuPositionBottom)?0:
|
|
(!self.navigationController.navigationBar.translucent?0:PageVCNavBarHeight);
|
|
(!self.navigationController.navigationBar.translucent?0:PageVCNavBarHeight);
|
|
}
|
|
}
|
|
@@ -184,7 +225,8 @@
|
|
if ([self.parentViewController isKindOfClass:[UINavigationController class]]) {
|
|
if ([self.parentViewController isKindOfClass:[UINavigationController class]]) {
|
|
UINavigationController *naPar = (UINavigationController*)self.parentViewController;
|
|
UINavigationController *naPar = (UINavigationController*)self.parentViewController;
|
|
headY = (!self.param.wFromNavi&&
|
|
headY = (!self.param.wFromNavi&&
|
|
- self.param.wMenuPosition != PageMenuPositionBottom)?0:
|
|
|
|
|
|
+ self.param.wMenuPosition != PageMenuPositionNavi&&
|
|
|
|
+ self.param.wMenuPosition != PageMenuPositionBottom)?0:
|
|
(!naPar.navigationBar.translucent?0:PageVCNavBarHeight);
|
|
(!naPar.navigationBar.translucent?0:PageVCNavBarHeight);
|
|
if (self.parentViewController.tabBarController) {
|
|
if (self.parentViewController.tabBarController) {
|
|
if (!self.parentViewController.tabBarController.tabBar.translucent) {
|
|
if (!self.parentViewController.tabBarController.tabBar.translucent) {
|
|
@@ -202,6 +244,7 @@
|
|
}
|
|
}
|
|
if (self.parentViewController.navigationController) {
|
|
if (self.parentViewController.navigationController) {
|
|
headY = (!self.param.wFromNavi&&
|
|
headY = (!self.param.wFromNavi&&
|
|
|
|
+ self.param.wMenuPosition != PageMenuPositionNavi&&
|
|
self.param.wMenuPosition != PageMenuPositionBottom)?0:(!self.parentViewController.navigationController.navigationBar.translucent?0:PageVCNavBarHeight);
|
|
self.param.wMenuPosition != PageMenuPositionBottom)?0:(!self.parentViewController.navigationController.navigationBar.translucent?0:PageVCNavBarHeight);
|
|
}else if(self.parentViewController.presentingViewController){
|
|
}else if(self.parentViewController.presentingViewController){
|
|
statusBarHeight = PageVCStatusBarHeight;
|
|
statusBarHeight = PageVCStatusBarHeight;
|
|
@@ -217,27 +260,26 @@
|
|
if (self.hidesBottomBarWhenPushed&&tabbarHeight>=PageVCTabBarHeight) {
|
|
if (self.hidesBottomBarWhenPushed&&tabbarHeight>=PageVCTabBarHeight) {
|
|
tabbarHeight -= PageVCTabBarHeight;
|
|
tabbarHeight -= PageVCTabBarHeight;
|
|
}
|
|
}
|
|
|
|
+
|
|
//全屏
|
|
//全屏
|
|
if (self.navigationController) {
|
|
if (self.navigationController) {
|
|
for (UIGestureRecognizer *gestureRecognizer in self.downSc.gestureRecognizers) {
|
|
for (UIGestureRecognizer *gestureRecognizer in self.downSc.gestureRecognizers) {
|
|
[gestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
|
|
[gestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
if (@available(iOS 11.0, *)) {
|
|
if (@available(iOS 11.0, *)) {
|
|
|
|
+ self.downSc.estimatedRowHeight = 0.01;
|
|
self.downSc.estimatedSectionFooterHeight = 0.01;
|
|
self.downSc.estimatedSectionFooterHeight = 0.01;
|
|
self.downSc.estimatedSectionHeaderHeight = 0.01;
|
|
self.downSc.estimatedSectionHeaderHeight = 0.01;
|
|
self.downSc.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
|
|
self.downSc.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
|
|
|
|
+ }else{
|
|
|
|
+ self.downSc.estimatedRowHeight = 0;
|
|
}
|
|
}
|
|
- self.downSc.estimatedRowHeight = 100;
|
|
|
|
self.downSc.sectionHeaderHeight = 0.01;
|
|
self.downSc.sectionHeaderHeight = 0.01;
|
|
self.downSc.sectionFooterHeight = 0.01;
|
|
self.downSc.sectionFooterHeight = 0.01;
|
|
self.downSc.delegate = self;
|
|
self.downSc.delegate = self;
|
|
self.downSc.bounces = self.param.wBounces;
|
|
self.downSc.bounces = self.param.wBounces;
|
|
self.downSc.frame = CGRectMake(0, headY, self.view.frame.size.width, self.view.frame.size.height-headY-tabbarHeight);
|
|
self.downSc.frame = CGRectMake(0, headY, self.view.frame.size.width, self.view.frame.size.height-headY-tabbarHeight);
|
|
- self.downSc.canScroll = [self canTopSuspension];
|
|
|
|
- self.downSc.scrollEnabled = [self canTopSuspension];
|
|
|
|
- self.downSc.wFromNavi = self.param.wFromNavi;
|
|
|
|
[self.view addSubview:self.downSc];
|
|
[self.view addSubview:self.downSc];
|
|
|
|
|
|
|
|
|
|
@@ -247,36 +289,12 @@
|
|
self.downSc.tableFooterView = self.upSc;
|
|
self.downSc.tableFooterView = self.upSc;
|
|
|
|
|
|
if (self.navigationController) {
|
|
if (self.navigationController) {
|
|
|
|
+
|
|
for (UIGestureRecognizer *gestureRecognizer in self.upSc.gestureRecognizers) {
|
|
for (UIGestureRecognizer *gestureRecognizer in self.upSc.gestureRecognizers) {
|
|
[gestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
|
|
[gestureRecognizer requireGestureRecognizerToFail:self.navigationController.interactivePopGestureRecognizer];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//底部
|
|
//底部
|
|
- [self setUpMenuAndDataViewFrame];
|
|
|
|
-
|
|
|
|
- if (self.param.wCustomMenuTitle) {
|
|
|
|
- self.param.wCustomMenuTitle(self.upSc.btnArr);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- [self setUpHead];
|
|
|
|
-
|
|
|
|
- [self.upSc.btnArr enumerateObjectsUsingBlock:^(WMZPageNaviBtn* _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
|
|
|
|
- if (idx == self.param.wMenuDefaultIndex && obj.tag!=10086) {
|
|
|
|
- self.upSc.first = YES;
|
|
|
|
- [obj sendActionsForControlEvents:UIControlEventTouchUpInside];
|
|
|
|
- *stop = YES;
|
|
|
|
- }
|
|
|
|
- }];
|
|
|
|
- self.canScroll = YES;
|
|
|
|
- self.scrolToBottom = YES;
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-- (void)updateMenuData{
|
|
|
|
- [self UI];
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-- (void)setUpMenuAndDataViewFrame{
|
|
|
|
sonChildVCY = 0;
|
|
sonChildVCY = 0;
|
|
sonChildVCHeight = 0;
|
|
sonChildVCHeight = 0;
|
|
CGFloat titleMenuhHeight = self.upSc.mainView.frame.size.height;
|
|
CGFloat titleMenuhHeight = self.upSc.mainView.frame.size.height;
|
|
@@ -285,11 +303,7 @@
|
|
sonChildVCHeight = self.downSc.frame.size.height;
|
|
sonChildVCHeight = self.downSc.frame.size.height;
|
|
}else if (self.param.wMenuPosition == PageMenuPositionBottom) {
|
|
}else if (self.param.wMenuPosition == PageMenuPositionBottom) {
|
|
sonChildVCY = 0;
|
|
sonChildVCY = 0;
|
|
- if (self.param.wMenuSpecifial == PageSpecialTypeOne) {
|
|
|
|
- sonChildVCHeight = self.downSc.frame.size.height;
|
|
|
|
- }else{
|
|
|
|
- sonChildVCHeight = self.downSc.frame.size.height - titleMenuhHeight;
|
|
|
|
- }
|
|
|
|
|
|
+ sonChildVCHeight = self.downSc.frame.size.height - titleMenuhHeight;
|
|
}else{
|
|
}else{
|
|
sonChildVCY = 0;
|
|
sonChildVCY = 0;
|
|
sonChildVCHeight = self.downSc.frame.size.height - titleMenuhHeight;
|
|
sonChildVCHeight = self.downSc.frame.size.height - titleMenuhHeight;
|
|
@@ -298,39 +312,11 @@
|
|
sonChildVCHeight -= self.param.wTopOffset;
|
|
sonChildVCHeight -= self.param.wTopOffset;
|
|
}
|
|
}
|
|
|
|
|
|
- CGFloat height = [self canTopSuspension]?sonChildVCHeight :(sonChildVCHeight-self.headHeight);
|
|
|
|
- if ([self canTopSuspension]) {
|
|
|
|
- if (!self.parentViewController) {
|
|
|
|
- height -=PageVCStatusBarHeight;
|
|
|
|
- }else{
|
|
|
|
- if (![self.parentViewController isKindOfClass:[WMZPageController class]]) {
|
|
|
|
- if (self.navigationController) {
|
|
|
|
- if (!self.param.wFromNavi) {
|
|
|
|
- height -= (self.navigationController.navigationBar.translucent?PageVCNavBarHeight:0);
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- }else{
|
|
|
|
- height -= PageVCStatusBarHeight;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- sonChildVCHeight = height;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
if (self.param.wMenuPosition == PageMenuPositionBottom){
|
|
if (self.param.wMenuPosition == PageMenuPositionBottom){
|
|
- if (self.param.wMenuSpecifial == PageSpecialTypeOne) {
|
|
|
|
- [self.upSc.dataView page_y:0];
|
|
|
|
- [self.upSc.dataView page_height:sonChildVCHeight];
|
|
|
|
- [self.upSc.mainView page_y:sonChildVCHeight-titleMenuhHeight];
|
|
|
|
- [self.upSc page_height:CGRectGetMaxY(self.upSc.mainView.frame)];
|
|
|
|
- [self.upSc bringSubviewToFront:self.upSc.mainView];
|
|
|
|
- }else{
|
|
|
|
- [self.upSc.dataView page_y:0];
|
|
|
|
- [self.upSc.dataView page_height:sonChildVCHeight];
|
|
|
|
- [self.upSc.mainView page_y:CGRectGetMaxY(self.upSc.dataView.frame)];
|
|
|
|
- [self.upSc page_height:CGRectGetMaxY(self.upSc.mainView.frame)];
|
|
|
|
- }
|
|
|
|
|
|
+ [self.upSc.dataView page_y:0];
|
|
|
|
+ [self.upSc.dataView page_height:sonChildVCHeight];
|
|
|
|
+ [self.upSc.mainView page_y:CGRectGetMaxY(self.upSc.dataView.frame)];
|
|
|
|
+ [self.upSc page_height:CGRectGetMaxY(self.upSc.mainView.frame)];
|
|
}else if (self.param.wMenuPosition == PageMenuPositionNavi && self.navigationController) {
|
|
}else if (self.param.wMenuPosition == PageMenuPositionNavi && self.navigationController) {
|
|
[self.upSc.mainView removeFromSuperview];
|
|
[self.upSc.mainView removeFromSuperview];
|
|
[self.upSc.dataView page_y:0];
|
|
[self.upSc.dataView page_y:0];
|
|
@@ -342,10 +328,34 @@
|
|
[self.upSc.dataView page_height:sonChildVCHeight];
|
|
[self.upSc.dataView page_height:sonChildVCHeight];
|
|
[self.upSc page_height:CGRectGetMaxY(self.upSc.dataView.frame)];
|
|
[self.upSc page_height:CGRectGetMaxY(self.upSc.dataView.frame)];
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
self.param.titleHeight = self.upSc.mainView.frame.size.height;
|
|
self.param.titleHeight = self.upSc.mainView.frame.size.height;
|
|
self.downSc.menuTitleHeight = self.param.titleHeight;
|
|
self.downSc.menuTitleHeight = self.param.titleHeight;
|
|
- pageDataFrame = self.upSc.dataView.frame;
|
|
|
|
- pageUpScFrame = self.upSc.frame;
|
|
|
|
|
|
+ self.downSc.canScroll = [self canTopSuspension];
|
|
|
|
+ self.downSc.scrollEnabled = [self canTopSuspension];
|
|
|
|
+ self.downSc.wFromNavi = self.param.wFromNavi;
|
|
|
|
+ if (self.param.wCustomMenuTitle) {
|
|
|
|
+ self.param.wCustomMenuTitle(self.upSc.btnArr);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ [self setUpHead];
|
|
|
|
+
|
|
|
|
+ [self.upSc.btnArr enumerateObjectsUsingBlock:^(WMZPageNaviBtn* _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
|
|
|
|
+ if (idx == self.param.wMenuDefaultIndex) {
|
|
|
|
+ self.upSc.first = YES;
|
|
|
|
+ [obj sendActionsForControlEvents:UIControlEventTouchUpInside];
|
|
|
|
+ *stop = YES;
|
|
|
|
+ }
|
|
|
|
+ }];
|
|
|
|
+ self.canScroll = YES;
|
|
|
|
+ self.scrolToBottom = YES;
|
|
|
|
+
|
|
|
|
+ if (@available(iOS 11.0, *)) {
|
|
|
|
+ [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
|
|
|
|
+ }else {
|
|
|
|
+ self.automaticallyAdjustsScrollViewInsets = NO;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
- (void)setUpHead{
|
|
- (void)setUpHead{
|
|
@@ -359,6 +369,28 @@
|
|
}else{
|
|
}else{
|
|
self.downSc.tableHeaderView = [[UIView alloc]initWithFrame:CGRectMake( 0, 0,self.view.frame.size.width, 0.01)];
|
|
self.downSc.tableHeaderView = [[UIView alloc]initWithFrame:CGRectMake( 0, 0,self.view.frame.size.width, 0.01)];
|
|
}
|
|
}
|
|
|
|
+ self.rectArr = [NSMutableArray new];
|
|
|
|
+ for (int i = 0; i<self.param.wTitleArr.count; i++) {
|
|
|
|
+ CGFloat height = [self canTopSuspension]?sonChildVCHeight :(sonChildVCHeight-self.headHeight);
|
|
|
|
+ if ([self canTopSuspension]) {
|
|
|
|
+ if (!self.parentViewController) {
|
|
|
|
+ height -=PageVCStatusBarHeight;
|
|
|
|
+ }else{
|
|
|
|
+ if (self.navigationController) {
|
|
|
|
+ if (!self.param.wFromNavi) {
|
|
|
|
+ height -= (self.navigationController.navigationBar.translucent?PageVCNavBarHeight:0);
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ height -= PageVCStatusBarHeight;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ CGRect frame = CGRectMake(i * self.downSc.frame.size.width,
|
|
|
|
+ [self canTopSuspension]?0:sonChildVCY,
|
|
|
|
+ self.downSc.frame.size.width,
|
|
|
|
+ height);
|
|
|
|
+ [self.rectArr addObject:[NSValue valueWithCGRect:frame]];
|
|
|
|
+ }
|
|
//全景
|
|
//全景
|
|
if (self.head_MenuView) {
|
|
if (self.head_MenuView) {
|
|
self.head_MenuView.frame = CGRectMake(0, self.headView?CGRectGetMinX(self.headView.frame):CGRectGetMinX(self.upSc.frame), self.upSc.frame.size.width, CGRectGetMaxY(self.upSc.frame)-self.upSc.dataView.frame.size.height);
|
|
self.head_MenuView.frame = CGRectMake(0, self.headView?CGRectGetMinX(self.headView.frame):CGRectGetMinX(self.upSc.frame), self.upSc.frame.size.width, CGRectGetMaxY(self.upSc.frame)-self.upSc.dataView.frame.size.height);
|
|
@@ -382,14 +414,22 @@
|
|
float yOffset = scrollView.contentOffset.y;
|
|
float yOffset = scrollView.contentOffset.y;
|
|
//顶点
|
|
//顶点
|
|
int topOffset = scrollView.contentSize.height - scrollView.frame.size.height;
|
|
int topOffset = scrollView.contentSize.height - scrollView.frame.size.height;
|
|
-
|
|
|
|
|
|
+ if (!self.parentViewController||!self.navigationController) {
|
|
|
|
+ topOffset -=PageVCStatusBarHeight;
|
|
|
|
+ }else{
|
|
|
|
+ UINavigationController *naPar = (UINavigationController*)self.parentViewController;
|
|
|
|
+ if (!self.param.wFromNavi) {
|
|
|
|
+ if (naPar.navigationBar.translucent) {
|
|
|
|
+ topOffset -=PageVCNavBarHeight;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
//外部传入 修改此属性即可
|
|
//外部传入 修改此属性即可
|
|
if (self.param.wTopOffset) {
|
|
if (self.param.wTopOffset) {
|
|
topOffset += self.param.wTopOffset;
|
|
topOffset += self.param.wTopOffset;
|
|
}
|
|
}
|
|
if (yOffset<=0) {
|
|
if (yOffset<=0) {
|
|
self.scrolToBottom = YES;
|
|
self.scrolToBottom = YES;
|
|
-
|
|
|
|
}else{
|
|
}else{
|
|
if (yOffset >= topOffset) {
|
|
if (yOffset >= topOffset) {
|
|
scrollView.contentOffset = CGPointMake(self.downSc.contentOffset.x, topOffset);
|
|
scrollView.contentOffset = CGPointMake(self.downSc.contentOffset.x, topOffset);
|
|
@@ -412,7 +452,6 @@
|
|
}else {
|
|
}else {
|
|
self.sonCanScroll = NO;
|
|
self.sonCanScroll = NO;
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
|
|
CGFloat delta = scrollView.contentOffset.y/topOffset;
|
|
CGFloat delta = scrollView.contentOffset.y/topOffset;
|
|
@@ -444,53 +483,31 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-//改变菜单栏高度
|
|
|
|
-- (void)changeMenuFrame{
|
|
|
|
- if (!self.param.wTopChangeHeight) return;
|
|
|
|
- if (self.upSc.mainView.frame.size.height == self.param.titleHeight&&!self.sonCanScroll)return;
|
|
|
|
- CGFloat offsetHeight = self.param.wTopChangeHeight>0?MIN(self.currentScroll.contentOffset.y, self.param.wTopChangeHeight):MAX (-self.currentScroll.contentOffset.y, self.param.wTopChangeHeight);
|
|
|
|
- if (self.upSc.mainView.frame.size.height == (self.param.titleHeight-self.param.wTopChangeHeight)&&self.sonCanScroll&&offsetHeight == self.param.wTopChangeHeight) return;
|
|
|
|
- [self.upSc.mainView page_height:self.param.titleHeight-offsetHeight];
|
|
|
|
- [self.upSc.dataView page_y:CGRectGetMaxY(self.upSc.mainView.frame)];
|
|
|
|
- [self.upSc.dataView page_height:pageDataFrame.size.height+offsetHeight];
|
|
|
|
- if (offsetHeight == 0) {
|
|
|
|
- if (self.param.wEventMenuNormalHeight) {
|
|
|
|
- self.param.wEventMenuNormalHeight(self.upSc.btnArr);
|
|
|
|
- }
|
|
|
|
- }else{
|
|
|
|
- if (self.param.wEventMenuChangeHeight) {
|
|
|
|
- self.param.wEventMenuChangeHeight(self.upSc.btnArr,self.currentScroll.contentOffset.y);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- //设置下划线
|
|
|
|
- [self.upSc endAninamal];
|
|
|
|
-}
|
|
|
|
//设置悬浮
|
|
//设置悬浮
|
|
- (void)setUpSuspension:(UIViewController*)newVC index:(NSInteger)index end:(BOOL)end{
|
|
- (void)setUpSuspension:(UIViewController*)newVC index:(NSInteger)index end:(BOOL)end{
|
|
if (![self canTopSuspension]) return;
|
|
if (![self canTopSuspension]) return;
|
|
if ([newVC conformsToProtocol:@protocol(WMZPageProtocol)]) {
|
|
if ([newVC conformsToProtocol:@protocol(WMZPageProtocol)]) {
|
|
UIScrollView *view = nil;
|
|
UIScrollView *view = nil;
|
|
- if ([newVC respondsToSelector:@selector(getMyScrollViews)]) {
|
|
|
|
- NSArray *arr = [newVC performSelector:@selector(getMyScrollViews)];
|
|
|
|
- [arr enumerateObjectsUsingBlock:^(UIScrollView* _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
|
|
|
|
- [self topSuspensionView:obj index:index*1000+idx+100];
|
|
|
|
- }];
|
|
|
|
- self.currentScrollArr = arr;
|
|
|
|
- }else{
|
|
|
|
- if ([newVC respondsToSelector:@selector(getMyTableView)]) {
|
|
|
|
- UIScrollView *tmpView = [newVC performSelector:@selector(getMyTableView)];
|
|
|
|
- if (tmpView&&[tmpView isKindOfClass:[UIScrollView class]]) {
|
|
|
|
- view = tmpView;
|
|
|
|
- }
|
|
|
|
- }else if([newVC respondsToSelector:@selector(getMyScrollView)]){
|
|
|
|
- UIScrollView *tmpView = [newVC performSelector:@selector(getMyScrollView)];
|
|
|
|
- if (tmpView&&[tmpView isKindOfClass:[UIScrollView class]]) {
|
|
|
|
- view = tmpView;
|
|
|
|
- }
|
|
|
|
|
|
+ if ([newVC respondsToSelector:@selector(getMyTableView)]) {
|
|
|
|
+ UIScrollView *tmpView = [newVC performSelector:@selector(getMyTableView)];
|
|
|
|
+ if (tmpView&&[tmpView isKindOfClass:[UIScrollView class]]) {
|
|
|
|
+ view = tmpView;
|
|
|
|
+ }
|
|
|
|
+ }else if([newVC respondsToSelector:@selector(getMyScrollView)]){
|
|
|
|
+ UIScrollView *tmpView = [newVC performSelector:@selector(getMyScrollView)];
|
|
|
|
+ if (tmpView&&[tmpView isKindOfClass:[UIScrollView class]]) {
|
|
|
|
+ view = tmpView;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (view) {
|
|
|
|
+ self.currentScroll = view;
|
|
|
|
+ [self.sonChildScrollerViewDic setObject:view forKey:@(index)];
|
|
|
|
+ if (self.scrolToBottom) {
|
|
|
|
+ view.contentOffset = CGPointMake(view.contentOffset.x,0);
|
|
}
|
|
}
|
|
- [self topSuspensionView:view index:index];
|
|
|
|
|
|
+ [self.currentScroll pageAddObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:nil];
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
if ([newVC respondsToSelector:@selector(fixFooterView)]) {
|
|
if ([newVC respondsToSelector:@selector(fixFooterView)]) {
|
|
UIView *tmpView = [newVC performSelector:@selector(fixFooterView)];
|
|
UIView *tmpView = [newVC performSelector:@selector(fixFooterView)];
|
|
[self.sonChildFooterViewDic setObject:view forKey:@(index)];
|
|
[self.sonChildFooterViewDic setObject:view forKey:@(index)];
|
|
@@ -513,20 +530,6 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-- (void)topSuspensionView:(UIScrollView*)view index:(NSInteger)index{
|
|
|
|
- if (view&&[view isKindOfClass:[UIScrollView class]]) {
|
|
|
|
- self.currentScroll = view;
|
|
|
|
- [self.sonChildScrollerViewDic setObject:view forKey:@(index)];
|
|
|
|
- if (self.scrolToBottom) {
|
|
|
|
- [view setContentOffset:CGPointMake(view.contentOffset.x,0) animated:NO];
|
|
|
|
- }
|
|
|
|
- if (!self.sonCanScroll&&!self.scrolToBottom) {
|
|
|
|
- [view setContentOffset:CGPointZero animated:NO];
|
|
|
|
- }
|
|
|
|
- [view pageAddObserver:self forKeyPath:@"contentOffset" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:nil];
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
//底部左滑滚动
|
|
//底部左滑滚动
|
|
- (void)pageWithScrollView:(UIScrollView*)scrollView left:(BOOL)left{
|
|
- (void)pageWithScrollView:(UIScrollView*)scrollView left:(BOOL)left{
|
|
int offset = (int)scrollView.contentOffset.x%(int)self.upSc.frame.size.width;
|
|
int offset = (int)scrollView.contentOffset.x%(int)self.upSc.frame.size.width;
|
|
@@ -573,22 +576,19 @@
|
|
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context{
|
|
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context{
|
|
if ([keyPath isEqualToString:@"contentOffset"]) {
|
|
if ([keyPath isEqualToString:@"contentOffset"]) {
|
|
if (![self canTopSuspension]) return;
|
|
if (![self canTopSuspension]) return;
|
|
|
|
+ if (self.currentScroll!=object) return;
|
|
if (hadWillDisappeal) return;
|
|
if (hadWillDisappeal) return;
|
|
- if (self.currentScroll!=object){
|
|
|
|
- self.currentScroll = object;
|
|
|
|
- };
|
|
|
|
CGPoint newH = [[change objectForKey:@"new"] CGPointValue];
|
|
CGPoint newH = [[change objectForKey:@"new"] CGPointValue];
|
|
CGPoint newOld = [[change objectForKey:@"old"] CGPointValue];
|
|
CGPoint newOld = [[change objectForKey:@"old"] CGPointValue];
|
|
if (newH.y==newOld.y) return;
|
|
if (newH.y==newOld.y) return;
|
|
if (!self.sonCanScroll&&!self.scrolToBottom) {
|
|
if (!self.sonCanScroll&&!self.scrolToBottom) {
|
|
self.currentScroll.contentOffset = CGPointZero;
|
|
self.currentScroll.contentOffset = CGPointZero;
|
|
- self.downSc.showsVerticalScrollIndicator = NO;
|
|
|
|
|
|
+ self.downSc.showsVerticalScrollIndicator = YES;
|
|
self.currentScroll.showsVerticalScrollIndicator = NO;
|
|
self.currentScroll.showsVerticalScrollIndicator = NO;
|
|
}else{
|
|
}else{
|
|
self.downSc.showsVerticalScrollIndicator = NO;
|
|
self.downSc.showsVerticalScrollIndicator = NO;
|
|
- self.currentScroll.showsVerticalScrollIndicator = NO;
|
|
|
|
|
|
+ self.currentScroll.showsVerticalScrollIndicator = YES;
|
|
}
|
|
}
|
|
- [self changeMenuFrame];
|
|
|
|
if ((int)newH.y<=0) {
|
|
if ((int)newH.y<=0) {
|
|
self.canScroll = YES;
|
|
self.canScroll = YES;
|
|
if (self.param.wBounces) {
|
|
if (self.param.wBounces) {
|
|
@@ -619,61 +619,11 @@
|
|
}];
|
|
}];
|
|
}
|
|
}
|
|
|
|
|
|
-//更新
|
|
|
|
-- (void)updatePageController{
|
|
|
|
- [self.upSc removeFromSuperview];
|
|
|
|
- [self.downSc removeFromSuperview];
|
|
|
|
- self.downSc = [[WMZPageScroller alloc]initWithFrame:CGRectMake(0, 0, PageVCWidth, PageVCHeight) style:UITableViewStyleGrouped];
|
|
|
|
- [self.sonChildScrollerViewDic removeAllObjects];
|
|
|
|
- [self.sonChildFooterViewDic removeAllObjects];
|
|
|
|
- footerViewIndex = -1;
|
|
|
|
- for (UIViewController *VC in self.childViewControllers) {
|
|
|
|
- [VC willMoveToParentViewController:nil];
|
|
|
|
- [VC.view removeFromSuperview];
|
|
|
|
- [VC removeFromParentViewController];
|
|
|
|
- }
|
|
|
|
- [self setParam];
|
|
|
|
- [self UI];
|
|
|
|
-}
|
|
|
|
-- (void)updateController{
|
|
|
|
- [self.upSc removeFromSuperview];
|
|
|
|
- [self.downSc removeFromSuperview];
|
|
|
|
- self.downSc = [[WMZPageScroller alloc]initWithFrame:CGRectMake(0, 0, PageVCWidth, PageVCHeight) style:UITableViewStyleGrouped];
|
|
|
|
- [self.sonChildScrollerViewDic removeAllObjects];
|
|
|
|
- [self.sonChildFooterViewDic removeAllObjects];
|
|
|
|
- footerViewIndex = -1;
|
|
|
|
- for (UIViewController *VC in self.childViewControllers) {
|
|
|
|
- [VC willMoveToParentViewController:nil];
|
|
|
|
- [VC.view removeFromSuperview];
|
|
|
|
- [VC removeFromParentViewController];
|
|
|
|
- }
|
|
|
|
- [self setParam];
|
|
|
|
- [self UI];
|
|
|
|
-}
|
|
|
|
-//更新头部
|
|
|
|
-- (void)updateHeadView{
|
|
|
|
- [self setUpHead];
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
-*底部手动滚动 传入CGPointZero则为吸顶临界点
|
|
|
|
-*/
|
|
|
|
-- (void)downScrollViewSetOffset:(CGPoint)point animated:(BOOL)animat;{
|
|
|
|
- if (CGPointEqualToPoint(point, CGPointZero)) {
|
|
|
|
- //顶点
|
|
|
|
- int topOffset = self.downSc.contentSize.height - self.downSc.frame.size.height;
|
|
|
|
- point = CGPointMake(self.downSc.contentOffset.x, topOffset);
|
|
|
|
- }
|
|
|
|
- [self.downSc setContentOffset:point animated:animat];
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-//数据
|
|
|
|
-- (void)showData{
|
|
|
|
- [self setParam];
|
|
|
|
- [self UI];
|
|
|
|
- if (self.naviBarBackGround&&self.param.wNaviColor) {
|
|
|
|
- self.naviBarBackGround.backgroundColor = self.param.wNaviColor;
|
|
|
|
|
|
+- (NSMutableArray *)rectArr{
|
|
|
|
+ if (!_rectArr) {
|
|
|
|
+ _rectArr = [NSMutableArray new];
|
|
}
|
|
}
|
|
|
|
+ return _rectArr;
|
|
}
|
|
}
|
|
|
|
|
|
- (NSMutableDictionary *)sonChildScrollerViewDic{
|
|
- (NSMutableDictionary *)sonChildScrollerViewDic{
|
|
@@ -716,18 +666,12 @@
|
|
return _footViewSizeWidth;
|
|
return _footViewSizeWidth;
|
|
}
|
|
}
|
|
|
|
|
|
-- (void)setParam:(WMZPageParam *)param{
|
|
|
|
- _param = param;
|
|
|
|
- [self performSelector:@selector(showData) withObject:nil afterDelay:CGFLOAT_MIN];
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
- (void)didReceiveMemoryWarning{
|
|
- (void)didReceiveMemoryWarning{
|
|
[super didReceiveMemoryWarning];
|
|
[super didReceiveMemoryWarning];
|
|
[self.cache removeAllObjects];
|
|
[self.cache removeAllObjects];
|
|
[self.sonChildScrollerViewDic removeAllObjects];
|
|
[self.sonChildScrollerViewDic removeAllObjects];
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
- (void)dealloc{
|
|
- (void)dealloc{
|
|
[self.sonChildScrollerViewDic enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
|
|
[self.sonChildScrollerViewDic enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
|
|
[obj removeAllObserverdKeyPath:self withKey:@"contentOffset"];
|
|
[obj removeAllObserverdKeyPath:self withKey:@"contentOffset"];
|