├── .gitignore ├── CHANGELOG.md ├── Classes ├── STZPullToRefresh.h ├── STZPullToRefresh.m ├── STZPullToRefreshView.h └── STZPullToRefreshView.m ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Example.xcworkspace │ └── contents.xcworkspacedata ├── Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Example-Info.plist │ ├── Example-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── ExampleTests │ ├── ExampleTests-Info.plist │ ├── ExampleTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile └── Podfile.lock ├── LICENSE ├── README.md ├── STZPullToRefresh.podspec └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # STZPullToRefresh CHANGELOG 2 | 3 | ## 0.0.1 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /Classes/STZPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Classes/STZPullToRefresh.h -------------------------------------------------------------------------------- /Classes/STZPullToRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Classes/STZPullToRefresh.m -------------------------------------------------------------------------------- /Classes/STZPullToRefreshView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Classes/STZPullToRefreshView.h -------------------------------------------------------------------------------- /Classes/STZPullToRefreshView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Classes/STZPullToRefreshView.m -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/Example-Info.plist -------------------------------------------------------------------------------- /Example/Example/Example-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/Example-Prefix.pch -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/ViewController.h -------------------------------------------------------------------------------- /Example/Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/ViewController.m -------------------------------------------------------------------------------- /Example/Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /Example/ExampleTests/ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/ExampleTests/ExampleTests-Info.plist -------------------------------------------------------------------------------- /Example/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Example/ExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | pod "STZPullToRefresh", :path => "../" 2 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/README.md -------------------------------------------------------------------------------- /STZPullToRefresh.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/STZPullToRefresh.podspec -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/STZPullToRefresh/HEAD/screenshot.gif --------------------------------------------------------------------------------