├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ ├── MJRefresh │ │ │ │ ├── MJRefresh.h │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshConst.h │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ ├── NSBundle+MJRefresh.h │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ └── UIView+MJExtension.h │ │ │ └── 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 │ │ └── Public │ │ │ ├── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── NSBundle+MJRefresh.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ │ │ └── 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 │ ├── MJRefresh │ │ ├── LICENSE │ │ ├── MJRefresh │ │ │ ├── Base │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ ├── MJRefreshAutoFooter.m │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ ├── MJRefreshBackFooter.m │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ └── MJRefreshHeader.m │ │ │ ├── Custom │ │ │ │ ├── Footer │ │ │ │ │ ├── Auto │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ │ └── Back │ │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ │ └── Header │ │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ │ └── MJRefreshStateHeader.m │ │ │ ├── MJRefresh.bundle │ │ │ │ ├── arrow@2x.png │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ └── Localizable.strings │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshConst.m │ │ │ ├── NSBundle+MJRefresh.h │ │ │ ├── NSBundle+MJRefresh.m │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJExtension.m │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ ├── UIView+MJExtension.h │ │ │ └── UIView+MJExtension.m │ │ └── README.md │ ├── 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 │ │ └── xcuserdata │ │ │ └── zhoulingyu.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── MJRefresh.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-ZLYWaterWave.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ │ └── Pods-ZLYWaterWave │ │ ├── Pods-ZLYWaterWave-acknowledgements.markdown │ │ ├── Pods-ZLYWaterWave-acknowledgements.plist │ │ ├── Pods-ZLYWaterWave-dummy.m │ │ ├── Pods-ZLYWaterWave-frameworks.sh │ │ ├── Pods-ZLYWaterWave-resources.sh │ │ ├── Pods-ZLYWaterWave.debug.xcconfig │ │ └── Pods-ZLYWaterWave.release.xcconfig ├── ZLYWaterWave.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── zhoulingyu.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── zhoulingyu.xcuserdatad │ │ └── xcschemes │ │ └── ZLYWaterWave.xcscheme ├── ZLYWaterWave.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── zhoulingyu.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── ZLYWaterWave │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── pic_red.imageset │ │ │ ├── Contents.json │ │ │ └── pic_red.png │ │ └── pic_white.imageset │ │ │ ├── Contents.json │ │ │ └── pic_white.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Controller │ │ ├── ZLYViewController.h │ │ └── ZLYViewController.m │ ├── Info.plist │ ├── Other │ │ ├── AppDelegate.h │ │ └── AppDelegate.m │ ├── ZLYWaterWave │ │ ├── ZLYWaterWave.h │ │ └── ZLYWaterWave.m │ └── main.m ├── ZLYWaterWaveTests │ ├── CFWaterWaveTests.m │ └── Info.plist └── ZLYWaterWaveUITests │ ├── CFWaterWaveUITests.m │ └── Info.plist ├── LICENSE ├── README.md ├── ZLYWaterWave.podspec └── ZLYWaterWave ├── ZLYWaterWave.h └── ZLYWaterWave.m /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/MJRefresh.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/MJRefresh.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/Pods-ZLYWaterWave.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/Pods-ZLYWaterWave.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/Pods/Target Support Files/Pods-ZLYWaterWave/Pods-ZLYWaterWave.release.xcconfig -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcodeproj/project.xcworkspace/xcuserdata/zhoulingyu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcodeproj/project.xcworkspace/xcuserdata/zhoulingyu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/ZLYWaterWave.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcodeproj/xcuserdata/zhoulingyu.xcuserdatad/xcschemes/ZLYWaterWave.xcscheme -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcworkspace/xcuserdata/zhoulingyu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcworkspace/xcuserdata/zhoulingyu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ZLYWaterWave.xcworkspace/xcuserdata/zhoulingyu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave.xcworkspace/xcuserdata/zhoulingyu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Assets.xcassets/pic_red.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Assets.xcassets/pic_red.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Assets.xcassets/pic_red.imageset/pic_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Assets.xcassets/pic_red.imageset/pic_red.png -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Assets.xcassets/pic_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Assets.xcassets/pic_white.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Assets.xcassets/pic_white.imageset/pic_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Assets.xcassets/pic_white.imageset/pic_white.png -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Controller/ZLYViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Controller/ZLYViewController.h -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Controller/ZLYViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Controller/ZLYViewController.m -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Info.plist -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Other/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Other/AppDelegate.h -------------------------------------------------------------------------------- /Example/ZLYWaterWave/Other/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/Other/AppDelegate.m -------------------------------------------------------------------------------- /Example/ZLYWaterWave/ZLYWaterWave/ZLYWaterWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/ZLYWaterWave/ZLYWaterWave.h -------------------------------------------------------------------------------- /Example/ZLYWaterWave/ZLYWaterWave/ZLYWaterWave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/ZLYWaterWave/ZLYWaterWave.m -------------------------------------------------------------------------------- /Example/ZLYWaterWave/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWave/main.m -------------------------------------------------------------------------------- /Example/ZLYWaterWaveTests/CFWaterWaveTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWaveTests/CFWaterWaveTests.m -------------------------------------------------------------------------------- /Example/ZLYWaterWaveTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWaveTests/Info.plist -------------------------------------------------------------------------------- /Example/ZLYWaterWaveUITests/CFWaterWaveUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWaveUITests/CFWaterWaveUITests.m -------------------------------------------------------------------------------- /Example/ZLYWaterWaveUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/Example/ZLYWaterWaveUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/README.md -------------------------------------------------------------------------------- /ZLYWaterWave.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/ZLYWaterWave.podspec -------------------------------------------------------------------------------- /ZLYWaterWave/ZLYWaterWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/ZLYWaterWave/ZLYWaterWave.h -------------------------------------------------------------------------------- /ZLYWaterWave/ZLYWaterWave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summertian4/CFWaterWave/HEAD/ZLYWaterWave/ZLYWaterWave.m --------------------------------------------------------------------------------