├── .gitignore ├── BALoadingView.podspec ├── Example ├── BALoadingView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── BALoadingView-Example.xcscheme ├── BALoadingView.xcworkspace │ └── contents.xcworkspacedata ├── BALoadingView │ ├── ADAM.CG PRO.otf │ ├── BAAppDelegate.h │ ├── BAAppDelegate.m │ ├── BALoadingView-Info.plist │ ├── BALoadingView-Prefix.pch │ ├── BAViewController.h │ ├── BAViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x-1.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ └── Icon-Small@3x.png │ │ └── Contents.json │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── BALoadingView │ │ │ └── BALoadingView.h │ ├── Local Podspecs │ │ └── BALoadingView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BALoadingView.xcscheme │ └── Target Support Files │ │ ├── BALoadingView │ │ ├── BALoadingView-Private.xcconfig │ │ ├── BALoadingView-dummy.m │ │ ├── BALoadingView-prefix.pch │ │ ├── BALoadingView-umbrella.h │ │ ├── BALoadingView.modulemap │ │ ├── BALoadingView.xcconfig │ │ └── Info.plist │ │ ├── Pods-BALoadingView_Example │ │ ├── Info.plist │ │ ├── Pods-BALoadingView_Example-acknowledgements.markdown │ │ ├── Pods-BALoadingView_Example-acknowledgements.plist │ │ ├── Pods-BALoadingView_Example-dummy.m │ │ ├── Pods-BALoadingView_Example-frameworks.sh │ │ ├── Pods-BALoadingView_Example-resources.sh │ │ ├── Pods-BALoadingView_Example-umbrella.h │ │ ├── Pods-BALoadingView_Example.debug.xcconfig │ │ ├── Pods-BALoadingView_Example.modulemap │ │ └── Pods-BALoadingView_Example.release.xcconfig │ │ └── Pods-BALoadingView_Tests │ │ ├── Info.plist │ │ ├── Pods-BALoadingView_Tests-acknowledgements.markdown │ │ ├── Pods-BALoadingView_Tests-acknowledgements.plist │ │ ├── Pods-BALoadingView_Tests-dummy.m │ │ ├── Pods-BALoadingView_Tests-frameworks.sh │ │ ├── Pods-BALoadingView_Tests-resources.sh │ │ ├── Pods-BALoadingView_Tests-umbrella.h │ │ ├── Pods-BALoadingView_Tests.debug.xcconfig │ │ ├── Pods-BALoadingView_Tests.modulemap │ │ └── Pods-BALoadingView_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── BALoadingView.h │ └── BALoadingView.m ├── README.md ├── _Pods.xcodeproj └── readmeAssets ├── example1.gif ├── example2.gif ├── example3a.gif ├── example3b.gif ├── example4.gif ├── example5.gif ├── example6.gif ├── screenshot1.png ├── screenshot2.png └── screenshot3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/.gitignore -------------------------------------------------------------------------------- /BALoadingView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/BALoadingView.podspec -------------------------------------------------------------------------------- /Example/BALoadingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/BALoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BALoadingView.xcodeproj/xcshareddata/xcschemes/BALoadingView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView.xcodeproj/xcshareddata/xcschemes/BALoadingView-Example.xcscheme -------------------------------------------------------------------------------- /Example/BALoadingView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BALoadingView/ADAM.CG PRO.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/ADAM.CG PRO.otf -------------------------------------------------------------------------------- /Example/BALoadingView/BAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/BAAppDelegate.h -------------------------------------------------------------------------------- /Example/BALoadingView/BAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/BAAppDelegate.m -------------------------------------------------------------------------------- /Example/BALoadingView/BALoadingView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/BALoadingView-Info.plist -------------------------------------------------------------------------------- /Example/BALoadingView/BALoadingView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/BALoadingView-Prefix.pch -------------------------------------------------------------------------------- /Example/BALoadingView/BAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/BAViewController.h -------------------------------------------------------------------------------- /Example/BALoadingView/BAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/BAViewController.m -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Example/BALoadingView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/BALoadingView/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/Main.storyboard -------------------------------------------------------------------------------- /Example/BALoadingView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/BALoadingView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/BALoadingView/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/BALoadingView/BALoadingView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/BALoadingView.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/BALoadingView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Local Podspecs/BALoadingView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/BALoadingView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/BALoadingView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/BALoadingView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/BALoadingView/BALoadingView-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/BALoadingView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/BALoadingView/BALoadingView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/BALoadingView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/BALoadingView/BALoadingView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/BALoadingView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/BALoadingView/BALoadingView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/BALoadingView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/BALoadingView/BALoadingView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/BALoadingView.xcconfig: -------------------------------------------------------------------------------- 1 | BALOADINGVIEW_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/BALoadingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/BALoadingView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Example/Pods-BALoadingView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Pods/Target Support Files/Pods-BALoadingView_Tests/Pods-BALoadingView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/BALoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Pod/Classes/BALoadingView.h -------------------------------------------------------------------------------- /Pod/Classes/BALoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/Pod/Classes/BALoadingView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /readmeAssets/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example1.gif -------------------------------------------------------------------------------- /readmeAssets/example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example2.gif -------------------------------------------------------------------------------- /readmeAssets/example3a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example3a.gif -------------------------------------------------------------------------------- /readmeAssets/example3b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example3b.gif -------------------------------------------------------------------------------- /readmeAssets/example4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example4.gif -------------------------------------------------------------------------------- /readmeAssets/example5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example5.gif -------------------------------------------------------------------------------- /readmeAssets/example6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/example6.gif -------------------------------------------------------------------------------- /readmeAssets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/screenshot1.png -------------------------------------------------------------------------------- /readmeAssets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/screenshot2.png -------------------------------------------------------------------------------- /readmeAssets/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiguab/BALoadingView/HEAD/readmeAssets/screenshot3.png --------------------------------------------------------------------------------