├── .gitignore ├── .gitmodules ├── ITPullToRefreshScrollView ├── Classes │ ├── DuxScrollViewAnimation.h │ ├── DuxScrollViewAnimation.m │ ├── ITPullToRefreshClipView.h │ ├── ITPullToRefreshClipView.m │ ├── ITPullToRefreshEdgeView.h │ ├── ITPullToRefreshEdgeView.m │ ├── ITPullToRefreshScrollView.h │ └── ITPullToRefreshScrollView.m ├── ITPullToRefreshScrollView.xcodeproj │ └── project.pbxproj ├── ITPullToRefreshScrollView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── ITPullToRefreshScrollView-Info.plist │ ├── ITPullToRefreshScrollView-Prefix.pch │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ ├── Credits.rtf │ │ └── InfoPlist.strings │ └── main.m └── ITPullToRefreshScrollViewTests │ ├── ITPullToRefreshScrollViewTests-Info.plist │ ├── ITPullToRefreshScrollViewTests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/.gitmodules -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/DuxScrollViewAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/DuxScrollViewAnimation.h -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/DuxScrollViewAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/DuxScrollViewAnimation.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/ITPullToRefreshClipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/ITPullToRefreshClipView.h -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/ITPullToRefreshClipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/ITPullToRefreshClipView.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/ITPullToRefreshEdgeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/ITPullToRefreshEdgeView.h -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/ITPullToRefreshEdgeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/ITPullToRefreshEdgeView.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/ITPullToRefreshScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/ITPullToRefreshScrollView.h -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/Classes/ITPullToRefreshScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/Classes/ITPullToRefreshScrollView.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/AppDelegate.h -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/AppDelegate.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/ITPullToRefreshScrollView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/ITPullToRefreshScrollView-Info.plist -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/ITPullToRefreshScrollView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/ITPullToRefreshScrollView-Prefix.pch -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollView/main.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollViewTests/ITPullToRefreshScrollViewTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollViewTests/ITPullToRefreshScrollViewTests-Info.plist -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollViewTests/ITPullToRefreshScrollViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/ITPullToRefreshScrollView/ITPullToRefreshScrollViewTests/ITPullToRefreshScrollViewTests.m -------------------------------------------------------------------------------- /ITPullToRefreshScrollView/ITPullToRefreshScrollViewTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iluuu1994/ITPullToRefreshScrollView/HEAD/demo.gif --------------------------------------------------------------------------------