├── .gitignore ├── Demo ├── Default-568h@2x.png ├── SVPullToRefreshDemo.xcodeproj │ └── project.pbxproj └── SVPullToRefreshDemo │ ├── SVAppDelegate.h │ ├── SVAppDelegate.m │ ├── SVPullToRefreshDemo-Info.plist │ ├── SVPullToRefreshDemo-Prefix.pch │ ├── SVViewController.h │ ├── SVViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── SVViewController.xib │ └── main.m ├── LICENSE.txt ├── README.md ├── SVPullToRefresh.podspec └── SVPullToRefresh ├── SVPullToRefresh.h ├── UIScrollView+SVInfiniteScrolling.h ├── UIScrollView+SVInfiniteScrolling.m ├── UIScrollView+SVPullToRefresh.h └── UIScrollView+SVPullToRefresh.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/SVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/SVAppDelegate.h -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/SVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/SVAppDelegate.m -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/SVPullToRefreshDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/SVPullToRefreshDemo-Info.plist -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/SVPullToRefreshDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/SVPullToRefreshDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/SVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/SVViewController.h -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/SVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/SVViewController.m -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/en.lproj/SVViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/en.lproj/SVViewController.xib -------------------------------------------------------------------------------- /Demo/SVPullToRefreshDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/Demo/SVPullToRefreshDemo/main.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/README.md -------------------------------------------------------------------------------- /SVPullToRefresh.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/SVPullToRefresh.podspec -------------------------------------------------------------------------------- /SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/SVPullToRefresh/SVPullToRefresh.h -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVInfiniteScrolling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.m -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVPullToRefresh.h -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVPullToRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samvermette/SVPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVPullToRefresh.m --------------------------------------------------------------------------------