├── .gitignore ├── Banners.png ├── LICENSE ├── README.md ├── TGRefreshSwift ├── .swift-version ├── TGRefreshSwift.podspec ├── TGRefreshSwift.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── TGRefreshSwift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── profile_cover_background.imageset │ │ ├── Contents.json │ │ └── profile_cover_background@2x.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TGRefreshSwift │ ├── TGIndicator │ │ ├── Animation │ │ │ ├── TGAudioEqualizer.swift │ │ │ ├── TGBallBeat.swift │ │ │ ├── TGBallClipRotate.swift │ │ │ ├── TGBallClipRotateMultiple.swift │ │ │ ├── TGBallClipRotatePulse.swift │ │ │ ├── TGBallGridBeat.swift │ │ │ ├── TGBallGridPulse.swift │ │ │ ├── TGBallPulse.swift │ │ │ ├── TGBallPulseRise.swift │ │ │ ├── TGBallPulseSync.swift │ │ │ ├── TGBallRotate.swift │ │ │ ├── TGBallRotateChase.swift │ │ │ ├── TGBallScale.swift │ │ │ ├── TGBallScaleMultiple.swift │ │ │ ├── TGBallScaleRipple.swift │ │ │ ├── TGBallScaleRippleMultiple.swift │ │ │ ├── TGBallSpinFadeLoader.swift │ │ │ ├── TGBallTrianglePath.swift │ │ │ ├── TGBallZigZag.swift │ │ │ ├── TGBallZigZagDeflect.swift │ │ │ ├── TGBlank.swift │ │ │ ├── TGCubeTransition.swift │ │ │ ├── TGLineCursor.swift │ │ │ ├── TGLineOrderbyAsc.swift │ │ │ ├── TGLineScale.swift │ │ │ ├── TGLineScaleParty.swift │ │ │ ├── TGLineScalePulseOut.swift │ │ │ ├── TGLineScalePulseOutRapid.swift │ │ │ ├── TGLineSpinFadeLoader.swift │ │ │ ├── TGOrbit.swift │ │ │ ├── TGPacman.swift │ │ │ ├── TGSemiCircleSpin.swift │ │ │ ├── TGSquareGridPulse.swift │ │ │ ├── TGSquarePulse.swift │ │ │ ├── TGSquareSpin.swift │ │ │ ├── TGTriangleSkewSpin.swift │ │ │ └── TGWindows.swift │ │ └── TGIndicator.swift │ ├── TGRefreshSwift.bundle │ │ └── refresh@2x.png │ └── TGRefreshSwift.swift │ └── ViewController.swift ├── a.gif ├── b.gif ├── c.gif └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /Banners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/Banners.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/README.md -------------------------------------------------------------------------------- /TGRefreshSwift/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift.podspec -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/AppDelegate.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Assets.xcassets/profile_cover_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Assets.xcassets/profile_cover_background.imageset/Contents.json -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Assets.xcassets/profile_cover_background.imageset/profile_cover_background@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Assets.xcassets/profile_cover_background.imageset/profile_cover_background@2x.jpg -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/Info.plist -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGAudioEqualizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGAudioEqualizer.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallBeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallBeat.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallClipRotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallClipRotate.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallClipRotateMultiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallClipRotateMultiple.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallClipRotatePulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallClipRotatePulse.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallGridBeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallGridBeat.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallGridPulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallGridPulse.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallPulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallPulse.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallPulseRise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallPulseRise.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallPulseSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallPulseSync.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallRotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallRotate.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallRotateChase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallRotateChase.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScale.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScaleMultiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScaleMultiple.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScaleRipple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScaleRipple.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScaleRippleMultiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallScaleRippleMultiple.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallSpinFadeLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallSpinFadeLoader.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallTrianglePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallTrianglePath.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallZigZag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallZigZag.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallZigZagDeflect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBallZigZagDeflect.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBlank.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGBlank.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGCubeTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGCubeTransition.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineCursor.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineOrderbyAsc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineOrderbyAsc.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScale.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScaleParty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScaleParty.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScalePulseOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScalePulseOut.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScalePulseOutRapid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineScalePulseOutRapid.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineSpinFadeLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGLineSpinFadeLoader.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGOrbit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGOrbit.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGPacman.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGPacman.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSemiCircleSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSemiCircleSpin.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSquareGridPulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSquareGridPulse.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSquarePulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSquarePulse.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSquareSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGSquareSpin.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGTriangleSkewSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGTriangleSkewSpin.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGWindows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/Animation/TGWindows.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/TGIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGIndicator/TGIndicator.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift.bundle/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift.bundle/refresh@2x.png -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift/TGRefreshSwift.swift -------------------------------------------------------------------------------- /TGRefreshSwift/TGRefreshSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/TGRefreshSwift/TGRefreshSwift/ViewController.swift -------------------------------------------------------------------------------- /a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/a.gif -------------------------------------------------------------------------------- /b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/b.gif -------------------------------------------------------------------------------- /c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/c.gif -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/targetcloud/TGRefreshSwift/HEAD/logo.png --------------------------------------------------------------------------------