├── .gitignore ├── AMRefresher.podspec ├── AMRefresher ├── AMInfiniteScrolling.swift ├── AMPullToRefresh.swift └── AMRefresher.swift ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/.gitignore -------------------------------------------------------------------------------- /AMRefresher.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/AMRefresher.podspec -------------------------------------------------------------------------------- /AMRefresher/AMInfiniteScrolling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/AMRefresher/AMInfiniteScrolling.swift -------------------------------------------------------------------------------- /AMRefresher/AMPullToRefresh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/AMRefresher/AMPullToRefresh.swift -------------------------------------------------------------------------------- /AMRefresher/AMRefresher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/AMRefresher/AMRefresher.swift -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturdev/AMRefresher/HEAD/demo.gif --------------------------------------------------------------------------------