├── .DS_Store ├── .gitignore ├── AyLoading.podspec ├── Classes ├── AyLoading.swift ├── NSButton+Loading.swift ├── NSView+Animations.swift ├── NSView+Indicator.swift ├── UIBarButtonItem+Loading.swift ├── UIButton+Loading.swift ├── UIView+Animations.swift ├── UIView+Indicator.swift ├── iOS+IndicatorView.swift └── macOS+IndicatorView.swift ├── LICENSE ├── README.md └── example ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ └── AyLoading.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── AyLoading-iOS │ ├── AyLoading-iOS-Info.plist │ ├── AyLoading-iOS-dummy.m │ ├── AyLoading-iOS-prefix.pch │ ├── AyLoading-iOS-umbrella.h │ ├── AyLoading-iOS.modulemap │ └── AyLoading-iOS.xcconfig │ ├── AyLoading-macOS │ ├── AyLoading-macOS-Info.plist │ ├── AyLoading-macOS-dummy.m │ ├── AyLoading-macOS-prefix.pch │ ├── AyLoading-macOS-umbrella.h │ ├── AyLoading-macOS.modulemap │ └── AyLoading-macOS.xcconfig │ ├── Pods-iOS │ ├── Pods-iOS-Info.plist │ ├── Pods-iOS-acknowledgements.markdown │ ├── Pods-iOS-acknowledgements.plist │ ├── Pods-iOS-dummy.m │ ├── Pods-iOS-frameworks.sh │ ├── Pods-iOS-umbrella.h │ ├── Pods-iOS.debug.xcconfig │ ├── Pods-iOS.modulemap │ └── Pods-iOS.release.xcconfig │ └── Pods-macOS │ ├── Pods-macOS-Info.plist │ ├── Pods-macOS-acknowledgements.markdown │ ├── Pods-macOS-acknowledgements.plist │ ├── Pods-macOS-dummy.m │ ├── Pods-macOS-frameworks.sh │ ├── Pods-macOS-umbrella.h │ ├── Pods-macOS.debug.xcconfig │ ├── Pods-macOS.modulemap │ └── Pods-macOS.release.xcconfig ├── example.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── example.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── iOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── macOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── macOS.entitlements └── screenshot ├── ios.gif └── macos.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/.gitignore -------------------------------------------------------------------------------- /AyLoading.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/AyLoading.podspec -------------------------------------------------------------------------------- /Classes/AyLoading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/AyLoading.swift -------------------------------------------------------------------------------- /Classes/NSButton+Loading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/NSButton+Loading.swift -------------------------------------------------------------------------------- /Classes/NSView+Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/NSView+Animations.swift -------------------------------------------------------------------------------- /Classes/NSView+Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/NSView+Indicator.swift -------------------------------------------------------------------------------- /Classes/UIBarButtonItem+Loading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/UIBarButtonItem+Loading.swift -------------------------------------------------------------------------------- /Classes/UIButton+Loading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/UIButton+Loading.swift -------------------------------------------------------------------------------- /Classes/UIView+Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/UIView+Animations.swift -------------------------------------------------------------------------------- /Classes/UIView+Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/UIView+Indicator.swift -------------------------------------------------------------------------------- /Classes/iOS+IndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/iOS+IndicatorView.swift -------------------------------------------------------------------------------- /Classes/macOS+IndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/Classes/macOS+IndicatorView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/README.md -------------------------------------------------------------------------------- /example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Podfile -------------------------------------------------------------------------------- /example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Podfile.lock -------------------------------------------------------------------------------- /example/Pods/Local Podspecs/AyLoading.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Local Podspecs/AyLoading.podspec.json -------------------------------------------------------------------------------- /example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Manifest.lock -------------------------------------------------------------------------------- /example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-Info.plist -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-dummy.m -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-prefix.pch -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS-umbrella.h -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS.modulemap -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-iOS/AyLoading-iOS.xcconfig -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-Info.plist -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-dummy.m -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-prefix.pch -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS-umbrella.h -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS.modulemap -------------------------------------------------------------------------------- /example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/AyLoading-macOS/AyLoading-macOS.xcconfig -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS-Info.plist -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS-acknowledgements.markdown -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS-acknowledgements.plist -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS-dummy.m -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS-frameworks.sh -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS-umbrella.h -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS.debug.xcconfig -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS.modulemap -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-iOS/Pods-iOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-iOS/Pods-iOS.release.xcconfig -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS-Info.plist -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS-acknowledgements.markdown -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS-acknowledgements.plist -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS-dummy.m -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS-frameworks.sh -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS-umbrella.h -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS.debug.xcconfig -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS.modulemap -------------------------------------------------------------------------------- /example/Pods/Target Support Files/Pods-macOS/Pods-macOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/Pods/Target Support Files/Pods-macOS/Pods-macOS.release.xcconfig -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/AppDelegate.swift -------------------------------------------------------------------------------- /example/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/Info.plist -------------------------------------------------------------------------------- /example/iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/iOS/ViewController.swift -------------------------------------------------------------------------------- /example/macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/AppDelegate.swift -------------------------------------------------------------------------------- /example/macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example/macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/Info.plist -------------------------------------------------------------------------------- /example/macOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/ViewController.swift -------------------------------------------------------------------------------- /example/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/macOS/macOS.entitlements -------------------------------------------------------------------------------- /example/screenshot/ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/screenshot/ios.gif -------------------------------------------------------------------------------- /example/screenshot/macos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chakery/AyLoading/HEAD/example/screenshot/macos.gif --------------------------------------------------------------------------------