├── .swift-version ├── DGElasticPullToRefresh.podspec ├── DGElasticPullToRefresh ├── DGElasticPullToRefreshConstants.swift ├── DGElasticPullToRefreshExtensions.swift ├── DGElasticPullToRefreshLoadingView.swift ├── DGElasticPullToRefreshLoadingViewCircle.swift └── DGElasticPullToRefreshView.swift ├── DGElasticPullToRefreshExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── gontovnik.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── haawa799.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── danil.gontovik.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── DGElasticPullToRefreshExample.xcscheme │ ├── gontovnik.xcuserdatad │ └── xcschemes │ │ ├── DGElasticPullToRefreshExample.xcscheme │ │ └── xcschememanagement.plist │ └── haawa799.xcuserdatad │ └── xcschemes │ ├── DGElasticPullToRefreshExample.xcscheme │ └── xcschememanagement.plist ├── DGElasticPullToRefreshExample ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── NavigationController.swift └── ViewController.swift ├── DGElasticPullToRefreshPreview1.gif ├── DGElasticPullToRefreshPreview2.gif ├── LICENSE └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /DGElasticPullToRefresh.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefresh.podspec -------------------------------------------------------------------------------- /DGElasticPullToRefresh/DGElasticPullToRefreshConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefresh/DGElasticPullToRefreshConstants.swift -------------------------------------------------------------------------------- /DGElasticPullToRefresh/DGElasticPullToRefreshExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefresh/DGElasticPullToRefreshExtensions.swift -------------------------------------------------------------------------------- /DGElasticPullToRefresh/DGElasticPullToRefreshLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefresh/DGElasticPullToRefreshLoadingView.swift -------------------------------------------------------------------------------- /DGElasticPullToRefresh/DGElasticPullToRefreshLoadingViewCircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefresh/DGElasticPullToRefreshLoadingViewCircle.swift -------------------------------------------------------------------------------- /DGElasticPullToRefresh/DGElasticPullToRefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefresh/DGElasticPullToRefreshView.swift -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/project.xcworkspace/xcuserdata/gontovnik.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/project.xcworkspace/xcuserdata/gontovnik.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/project.xcworkspace/xcuserdata/haawa799.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/project.xcworkspace/xcuserdata/haawa799.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/xcuserdata/danil.gontovik.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/xcuserdata/danil.gontovik.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/xcuserdata/danil.gontovik.xcuserdatad/xcschemes/DGElasticPullToRefreshExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/xcuserdata/danil.gontovik.xcuserdatad/xcschemes/DGElasticPullToRefreshExample.xcscheme -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/xcuserdata/gontovnik.xcuserdatad/xcschemes/DGElasticPullToRefreshExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/xcuserdata/gontovnik.xcuserdatad/xcschemes/DGElasticPullToRefreshExample.xcscheme -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/xcuserdata/gontovnik.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/xcuserdata/gontovnik.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/xcuserdata/haawa799.xcuserdatad/xcschemes/DGElasticPullToRefreshExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/xcuserdata/haawa799.xcuserdatad/xcschemes/DGElasticPullToRefreshExample.xcscheme -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample.xcodeproj/xcuserdata/haawa799.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample.xcodeproj/xcuserdata/haawa799.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample/AppDelegate.swift -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample/Info.plist -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample/NavigationController.swift -------------------------------------------------------------------------------- /DGElasticPullToRefreshExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshExample/ViewController.swift -------------------------------------------------------------------------------- /DGElasticPullToRefreshPreview1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshPreview1.gif -------------------------------------------------------------------------------- /DGElasticPullToRefreshPreview2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/DGElasticPullToRefreshPreview2.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/DGElasticPullToRefresh/HEAD/README.md --------------------------------------------------------------------------------