├── .gitignore ├── .swift-version ├── .travis.yml ├── AARefreshControl.podspec ├── AARefreshControl ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── AARefreshControl.swift ├── Example ├── AARefreshControl.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AARefreshControl-Example.xcscheme ├── AARefreshControl.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AARefreshControl │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AA.imageset │ │ │ ├── 17049477.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ └── Icon-Small-50x50@2x.png │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── AARefreshControl.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── AARefreshControl │ │ ├── AARefreshControl-Info.plist │ │ ├── AARefreshControl-dummy.m │ │ ├── AARefreshControl-prefix.pch │ │ ├── AARefreshControl-umbrella.h │ │ ├── AARefreshControl.modulemap │ │ └── AARefreshControl.xcconfig │ │ ├── Pods-AARefreshControl_Example │ │ ├── Pods-AARefreshControl_Example-Info.plist │ │ ├── Pods-AARefreshControl_Example-acknowledgements.markdown │ │ ├── Pods-AARefreshControl_Example-acknowledgements.plist │ │ ├── Pods-AARefreshControl_Example-dummy.m │ │ ├── Pods-AARefreshControl_Example-frameworks.sh │ │ ├── Pods-AARefreshControl_Example-umbrella.h │ │ ├── Pods-AARefreshControl_Example.debug.xcconfig │ │ ├── Pods-AARefreshControl_Example.modulemap │ │ └── Pods-AARefreshControl_Example.release.xcconfig │ │ └── Pods-AARefreshControl_Tests │ │ ├── Pods-AARefreshControl_Tests-Info.plist │ │ ├── Pods-AARefreshControl_Tests-acknowledgements.markdown │ │ ├── Pods-AARefreshControl_Tests-acknowledgements.plist │ │ ├── Pods-AARefreshControl_Tests-dummy.m │ │ ├── Pods-AARefreshControl_Tests-umbrella.h │ │ ├── Pods-AARefreshControl_Tests.debug.xcconfig │ │ ├── Pods-AARefreshControl_Tests.modulemap │ │ └── Pods-AARefreshControl_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/.travis.yml -------------------------------------------------------------------------------- /AARefreshControl.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/AARefreshControl.podspec -------------------------------------------------------------------------------- /AARefreshControl/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AARefreshControl/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AARefreshControl/Classes/AARefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/AARefreshControl/Classes/AARefreshControl.swift -------------------------------------------------------------------------------- /Example/AARefreshControl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AARefreshControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AARefreshControl.xcodeproj/xcshareddata/xcschemes/AARefreshControl-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl.xcodeproj/xcshareddata/xcschemes/AARefreshControl-Example.xcscheme -------------------------------------------------------------------------------- /Example/AARefreshControl.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AARefreshControl.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AARefreshControl/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/AppDelegate.swift -------------------------------------------------------------------------------- /Example/AARefreshControl/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/AARefreshControl/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AA.imageset/17049477.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AA.imageset/17049477.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AA.imageset/Contents.json -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Example/AARefreshControl/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/AARefreshControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/Info.plist -------------------------------------------------------------------------------- /Example/AARefreshControl/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/AARefreshControl/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AARefreshControl.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Local Podspecs/AARefreshControl.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/AARefreshControl/AARefreshControl-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AARefreshControl/AARefreshControl.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/AARefreshControl/AARefreshControl.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AARefreshControl/AARefreshControl.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/AARefreshControl/AARefreshControl.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Example/Pods-AARefreshControl_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Pods/Target Support Files/Pods-AARefreshControl_Tests/Pods-AARefreshControl_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngrAhsanAli/AARefreshControl/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------