├── .KJMultipleScrollViewManager.podspec.swp ├── .gitignore ├── KJMultipleScrollViewManager.podspec ├── KJScrollViewManager.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── KJScrollViewManager.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── KJScrollViewManager ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── demo_test.imageset │ │ ├── Contents.json │ │ └── demo_test@2x.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HFStretchableTableHeaderView │ ├── HFStretchableTableHeaderView.h │ └── HFStretchableTableHeaderView.m ├── Info.plist ├── KjChildViewController.h ├── KjChildViewController.m ├── ViewController.h ├── ViewController.m └── main.m ├── KJScrollViewManagerTests ├── Info.plist └── KJScrollViewManagerTests.m ├── KJScrollViewManagerUITests ├── Info.plist └── KJScrollViewManagerUITests.m ├── KjMultipleScrollViewDemoEffect180807.gif ├── LICENSE ├── MultipleScrollViewManager ├── MultipleScrollViewManager.h ├── MultipleScrollViewManager.m └── TableView │ ├── MultipleGestureTableView.h │ └── MultipleGestureTableView.m ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ └── SGPagingView │ │ │ ├── NSString+SGPagingView.h │ │ │ ├── SGPageContentCollectionView.h │ │ │ ├── SGPageContentScrollView.h │ │ │ ├── SGPageTitleView.h │ │ │ ├── SGPageTitleViewConfigure.h │ │ │ ├── SGPagingView.h │ │ │ ├── UIButton+SGPagingView.h │ │ │ └── UIView+SGPagingView.h │ └── Public │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ └── SGPagingView │ │ ├── NSString+SGPagingView.h │ │ ├── SGPageContentCollectionView.h │ │ ├── SGPageContentScrollView.h │ │ ├── SGPageTitleView.h │ │ ├── SGPageTitleViewConfigure.h │ │ ├── SGPagingView.h │ │ ├── UIButton+SGPagingView.h │ │ └── UIView+SGPagingView.h ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── SGPagingView │ ├── LICENSE │ ├── README.md │ └── SGPagingView │ │ ├── Category │ │ ├── NSString+SGPagingView.h │ │ ├── NSString+SGPagingView.m │ │ ├── UIButton+SGPagingView.h │ │ ├── UIButton+SGPagingView.m │ │ ├── UIView+SGPagingView.h │ │ └── UIView+SGPagingView.m │ │ ├── SGPageContent │ │ ├── SGPageContentCollectionView.h │ │ ├── SGPageContentCollectionView.m │ │ ├── SGPageContentScrollView.h │ │ └── SGPageContentScrollView.m │ │ ├── SGPageTitle │ │ ├── SGPageTitleView.h │ │ ├── SGPageTitleView.m │ │ ├── SGPageTitleViewConfigure.h │ │ └── SGPageTitleViewConfigure.m │ │ └── SGPagingView.h └── Target Support Files │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-KJScrollViewManager │ ├── Pods-KJScrollViewManager-acknowledgements.markdown │ ├── Pods-KJScrollViewManager-acknowledgements.plist │ ├── Pods-KJScrollViewManager-dummy.m │ ├── Pods-KJScrollViewManager-frameworks.sh │ ├── Pods-KJScrollViewManager-resources.sh │ ├── Pods-KJScrollViewManager.debug.xcconfig │ └── Pods-KJScrollViewManager.release.xcconfig │ └── SGPagingView │ ├── SGPagingView-dummy.m │ ├── SGPagingView-prefix.pch │ └── SGPagingView.xcconfig └── README.md /.KJMultipleScrollViewManager.podspec.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/.KJMultipleScrollViewManager.podspec.swp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/.gitignore -------------------------------------------------------------------------------- /KJMultipleScrollViewManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJMultipleScrollViewManager.podspec -------------------------------------------------------------------------------- /KJScrollViewManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KJScrollViewManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KJScrollViewManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KJScrollViewManager.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KJScrollViewManager.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KJScrollViewManager/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/AppDelegate.h -------------------------------------------------------------------------------- /KJScrollViewManager/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/AppDelegate.m -------------------------------------------------------------------------------- /KJScrollViewManager/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KJScrollViewManager/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KJScrollViewManager/Assets.xcassets/demo_test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Assets.xcassets/demo_test.imageset/Contents.json -------------------------------------------------------------------------------- /KJScrollViewManager/Assets.xcassets/demo_test.imageset/demo_test@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Assets.xcassets/demo_test.imageset/demo_test@2x.jpg -------------------------------------------------------------------------------- /KJScrollViewManager/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KJScrollViewManager/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KJScrollViewManager/HFStretchableTableHeaderView/HFStretchableTableHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/HFStretchableTableHeaderView/HFStretchableTableHeaderView.h -------------------------------------------------------------------------------- /KJScrollViewManager/HFStretchableTableHeaderView/HFStretchableTableHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/HFStretchableTableHeaderView/HFStretchableTableHeaderView.m -------------------------------------------------------------------------------- /KJScrollViewManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/Info.plist -------------------------------------------------------------------------------- /KJScrollViewManager/KjChildViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/KjChildViewController.h -------------------------------------------------------------------------------- /KJScrollViewManager/KjChildViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/KjChildViewController.m -------------------------------------------------------------------------------- /KJScrollViewManager/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/ViewController.h -------------------------------------------------------------------------------- /KJScrollViewManager/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/ViewController.m -------------------------------------------------------------------------------- /KJScrollViewManager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManager/main.m -------------------------------------------------------------------------------- /KJScrollViewManagerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManagerTests/Info.plist -------------------------------------------------------------------------------- /KJScrollViewManagerTests/KJScrollViewManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManagerTests/KJScrollViewManagerTests.m -------------------------------------------------------------------------------- /KJScrollViewManagerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManagerUITests/Info.plist -------------------------------------------------------------------------------- /KJScrollViewManagerUITests/KJScrollViewManagerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KJScrollViewManagerUITests/KJScrollViewManagerUITests.m -------------------------------------------------------------------------------- /KjMultipleScrollViewDemoEffect180807.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/KjMultipleScrollViewDemoEffect180807.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/LICENSE -------------------------------------------------------------------------------- /MultipleScrollViewManager/MultipleScrollViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/MultipleScrollViewManager/MultipleScrollViewManager.h -------------------------------------------------------------------------------- /MultipleScrollViewManager/MultipleScrollViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/MultipleScrollViewManager/MultipleScrollViewManager.m -------------------------------------------------------------------------------- /MultipleScrollViewManager/TableView/MultipleGestureTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/MultipleScrollViewManager/TableView/MultipleGestureTableView.h -------------------------------------------------------------------------------- /MultipleScrollViewManager/TableView/MultipleGestureTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/MultipleScrollViewManager/TableView/MultipleGestureTableView.m -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/NSString+SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/Category/NSString+SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/SGPageContentCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageContent/SGPageContentCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/SGPageContentScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageContent/SGPageContentScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/SGPageTitleView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageTitle/SGPageTitleView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/SGPageTitleViewConfigure.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageTitle/SGPageTitleViewConfigure.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/UIButton+SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/Category/UIButton+SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGPagingView/UIView+SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/Category/UIView+SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/NSString+SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/Category/NSString+SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/SGPageContentCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageContent/SGPageContentCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/SGPageContentScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageContent/SGPageContentScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/SGPageTitleView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageTitle/SGPageTitleView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/SGPageTitleViewConfigure.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPageTitle/SGPageTitleViewConfigure.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/UIButton+SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/Category/UIButton+SGPagingView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SGPagingView/UIView+SGPagingView.h: -------------------------------------------------------------------------------- 1 | ../../../SGPagingView/SGPagingView/Category/UIView+SGPagingView.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SGPagingView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/LICENSE -------------------------------------------------------------------------------- /Pods/SGPagingView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/README.md -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/Category/NSString+SGPagingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/Category/NSString+SGPagingView.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/Category/NSString+SGPagingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/Category/NSString+SGPagingView.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/Category/UIButton+SGPagingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/Category/UIButton+SGPagingView.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/Category/UIButton+SGPagingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/Category/UIButton+SGPagingView.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/Category/UIView+SGPagingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/Category/UIView+SGPagingView.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/Category/UIView+SGPagingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/Category/UIView+SGPagingView.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentCollectionView.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentCollectionView.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentScrollView.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageContent/SGPageContentScrollView.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleView.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleView.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleViewConfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleViewConfigure.h -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleViewConfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPageTitle/SGPageTitleViewConfigure.m -------------------------------------------------------------------------------- /Pods/SGPagingView/SGPagingView/SGPagingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/SGPagingView/SGPagingView/SGPagingView.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/Pods-KJScrollViewManager/Pods-KJScrollViewManager.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SGPagingView/SGPagingView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/SGPagingView/SGPagingView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SGPagingView/SGPagingView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/SGPagingView/SGPagingView-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SGPagingView/SGPagingView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/Pods/Target Support Files/SGPagingView/SGPagingView.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangkejin-dev/KJMultipleScrollViewManager/HEAD/README.md --------------------------------------------------------------------------------