├── .gitignore ├── Demo ├── HTPullToRefreshDemo.xcodeproj │ └── project.pbxproj └── HTPullToRefreshDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HTViewController.h │ ├── HTViewController.m │ ├── HorizontalViewController.h │ ├── HorizontalViewController.m │ ├── Info.plist │ ├── SquareCell.h │ ├── SquareCell.m │ ├── SquareCell.xib │ ├── VerticalViewController.h │ ├── VerticalViewController.m │ └── main.m ├── HTPullToRefresh.podspec ├── LICENSE.txt ├── README.md └── SVPullToRefresh ├── NSString+HTPullToRefresh.h ├── NSString+HTPullToRefresh.m ├── SVPullToRefresh.h ├── UIScrollView+SVInfiniteScrolling.h ├── UIScrollView+SVInfiniteScrolling.m ├── UIScrollView+SVPullToRefresh.h └── UIScrollView+SVPullToRefresh.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/HTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/HTViewController.h -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/HTViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/HTViewController.m -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/HorizontalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/HorizontalViewController.h -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/HorizontalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/HorizontalViewController.m -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/Info.plist -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/SquareCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/SquareCell.h -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/SquareCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/SquareCell.m -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/SquareCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/SquareCell.xib -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/VerticalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/VerticalViewController.h -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/VerticalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/VerticalViewController.m -------------------------------------------------------------------------------- /Demo/HTPullToRefreshDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/Demo/HTPullToRefreshDemo/main.m -------------------------------------------------------------------------------- /HTPullToRefresh.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/HTPullToRefresh.podspec -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/README.md -------------------------------------------------------------------------------- /SVPullToRefresh/NSString+HTPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/NSString+HTPullToRefresh.h -------------------------------------------------------------------------------- /SVPullToRefresh/NSString+HTPullToRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/NSString+HTPullToRefresh.m -------------------------------------------------------------------------------- /SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/SVPullToRefresh.h -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVInfiniteScrolling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.m -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVPullToRefresh.h -------------------------------------------------------------------------------- /SVPullToRefresh/UIScrollView+SVPullToRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoang-tran/HTPullToRefresh/HEAD/SVPullToRefresh/UIScrollView+SVPullToRefresh.m --------------------------------------------------------------------------------