├── .github ├── ISSUE_TEMPLATE.md └── contributing.md ├── .gitignore ├── .swift-version ├── LICENSE ├── PullToRefresh ├── DefaultRefreshView.swift ├── DefaultViewAnimator.swift ├── Info.plist ├── PullToRefresh.h ├── PullToRefresh.swift ├── RefreshViewAnimator.swift ├── State.swift └── UIScrollView+PullToRefresh.swift ├── PullToRefreshDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── PullToRefreshDemo.xccheckout └── xcshareddata │ └── xcschemes │ └── PullToRefresh.xcscheme ├── PullToRefreshDemo ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── CollectionViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── gear.imageset │ │ ├── Contents.json │ │ ├── gear-2.png │ │ └── gear.png ├── Info.plist ├── NumberCollectionViewCell.swift ├── PullToRefreshPresentable.swift ├── Resources │ └── badge_dark.png ├── ScrollViewController.swift ├── SettingViewController.swift └── TableViewController.swift ├── PullToRefresher.podspec └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/LICENSE -------------------------------------------------------------------------------- /PullToRefresh/DefaultRefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/DefaultRefreshView.swift -------------------------------------------------------------------------------- /PullToRefresh/DefaultViewAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/DefaultViewAnimator.swift -------------------------------------------------------------------------------- /PullToRefresh/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/Info.plist -------------------------------------------------------------------------------- /PullToRefresh/PullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/PullToRefresh.h -------------------------------------------------------------------------------- /PullToRefresh/PullToRefresh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/PullToRefresh.swift -------------------------------------------------------------------------------- /PullToRefresh/RefreshViewAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/RefreshViewAnimator.swift -------------------------------------------------------------------------------- /PullToRefresh/State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/State.swift -------------------------------------------------------------------------------- /PullToRefresh/UIScrollView+PullToRefresh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresh/UIScrollView+PullToRefresh.swift -------------------------------------------------------------------------------- /PullToRefreshDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PullToRefreshDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PullToRefreshDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PullToRefreshDemo.xcodeproj/project.xcworkspace/xcshareddata/PullToRefreshDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo.xcodeproj/project.xcworkspace/xcshareddata/PullToRefreshDemo.xccheckout -------------------------------------------------------------------------------- /PullToRefreshDemo.xcodeproj/xcshareddata/xcschemes/PullToRefresh.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo.xcodeproj/xcshareddata/xcschemes/PullToRefresh.xcscheme -------------------------------------------------------------------------------- /PullToRefreshDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/AppDelegate.swift -------------------------------------------------------------------------------- /PullToRefreshDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /PullToRefreshDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PullToRefreshDemo/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/CollectionViewController.swift -------------------------------------------------------------------------------- /PullToRefreshDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PullToRefreshDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /PullToRefreshDemo/Images.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Images.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /PullToRefreshDemo/Images.xcassets/gear.imageset/gear-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Images.xcassets/gear.imageset/gear-2.png -------------------------------------------------------------------------------- /PullToRefreshDemo/Images.xcassets/gear.imageset/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Images.xcassets/gear.imageset/gear.png -------------------------------------------------------------------------------- /PullToRefreshDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Info.plist -------------------------------------------------------------------------------- /PullToRefreshDemo/NumberCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/NumberCollectionViewCell.swift -------------------------------------------------------------------------------- /PullToRefreshDemo/PullToRefreshPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/PullToRefreshPresentable.swift -------------------------------------------------------------------------------- /PullToRefreshDemo/Resources/badge_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/Resources/badge_dark.png -------------------------------------------------------------------------------- /PullToRefreshDemo/ScrollViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/ScrollViewController.swift -------------------------------------------------------------------------------- /PullToRefreshDemo/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/SettingViewController.swift -------------------------------------------------------------------------------- /PullToRefreshDemo/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefreshDemo/TableViewController.swift -------------------------------------------------------------------------------- /PullToRefresher.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/PullToRefresher.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yalantis/PullToRefresh/HEAD/README.md --------------------------------------------------------------------------------