├── .gitignore ├── Example ├── LoadingPlaceholderView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LoadingPlaceholderView-Example.xcscheme ├── LoadingPlaceholderView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── LoadingPlaceholderView │ ├── AppDelegate.swift │ ├── Examples │ │ ├── CollectionViewExampleViewController.swift │ │ ├── MixedComponentsExampleViewController.swift │ │ └── TableViewExampleViewController.swift │ ├── Main.storyboard │ └── Supporting files │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── LaunchScreen.storyboard ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── LoadingPlaceholderView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LoadingPlaceholderView.xcscheme │ └── Target Support Files │ │ ├── LoadingPlaceholderView │ │ ├── Info.plist │ │ ├── LoadingPlaceholderView-dummy.m │ │ ├── LoadingPlaceholderView-prefix.pch │ │ ├── LoadingPlaceholderView-umbrella.h │ │ ├── LoadingPlaceholderView.modulemap │ │ └── LoadingPlaceholderView.xcconfig │ │ ├── Pods-LoadingPlaceholderView_Example │ │ ├── Info.plist │ │ ├── Pods-LoadingPlaceholderView_Example-acknowledgements.markdown │ │ ├── Pods-LoadingPlaceholderView_Example-acknowledgements.plist │ │ ├── Pods-LoadingPlaceholderView_Example-dummy.m │ │ ├── Pods-LoadingPlaceholderView_Example-frameworks.sh │ │ ├── Pods-LoadingPlaceholderView_Example-resources.sh │ │ ├── Pods-LoadingPlaceholderView_Example-umbrella.h │ │ ├── Pods-LoadingPlaceholderView_Example.debug.xcconfig │ │ ├── Pods-LoadingPlaceholderView_Example.modulemap │ │ └── Pods-LoadingPlaceholderView_Example.release.xcconfig │ │ └── Pods-LoadingPlaceholderView_Tests │ │ ├── Info.plist │ │ ├── Pods-LoadingPlaceholderView_Tests-acknowledgements.markdown │ │ ├── Pods-LoadingPlaceholderView_Tests-acknowledgements.plist │ │ ├── Pods-LoadingPlaceholderView_Tests-dummy.m │ │ ├── Pods-LoadingPlaceholderView_Tests-frameworks.sh │ │ ├── Pods-LoadingPlaceholderView_Tests-resources.sh │ │ ├── Pods-LoadingPlaceholderView_Tests-umbrella.h │ │ ├── Pods-LoadingPlaceholderView_Tests.debug.xcconfig │ │ ├── Pods-LoadingPlaceholderView_Tests.modulemap │ │ └── Pods-LoadingPlaceholderView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── LoadingPlaceholderView.podspec ├── LoadingPlaceholderView ├── Coverable+UIKit.swift ├── Coverable.swift ├── LoadingPlaceholderView.swift └── UIBezierPath+.swift ├── README.md ├── ReadmeResources ├── collectionView.gif ├── mixedComponents.gif └── tableView.gif └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView.xcodeproj/xcshareddata/xcschemes/LoadingPlaceholderView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView.xcodeproj/xcshareddata/xcschemes/LoadingPlaceholderView-Example.xcscheme -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Examples/CollectionViewExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Examples/CollectionViewExampleViewController.swift -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Examples/MixedComponentsExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Examples/MixedComponentsExampleViewController.swift -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Examples/TableViewExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Examples/TableViewExampleViewController.swift -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Main.storyboard -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Supporting files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Supporting files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Supporting files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Supporting files/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Supporting files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Supporting files/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Supporting files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Supporting files/Info.plist -------------------------------------------------------------------------------- /Example/LoadingPlaceholderView/Supporting files/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/LoadingPlaceholderView/Supporting files/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LoadingPlaceholderView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Local Podspecs/LoadingPlaceholderView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LoadingPlaceholderView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LoadingPlaceholderView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoadingPlaceholderView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/LoadingPlaceholderView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/LoadingPlaceholderView/LoadingPlaceholderView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Example/Pods-LoadingPlaceholderView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Pods/Target Support Files/Pods-LoadingPlaceholderView_Tests/Pods-LoadingPlaceholderView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/LICENSE -------------------------------------------------------------------------------- /LoadingPlaceholderView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/LoadingPlaceholderView.podspec -------------------------------------------------------------------------------- /LoadingPlaceholderView/Coverable+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/LoadingPlaceholderView/Coverable+UIKit.swift -------------------------------------------------------------------------------- /LoadingPlaceholderView/Coverable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/LoadingPlaceholderView/Coverable.swift -------------------------------------------------------------------------------- /LoadingPlaceholderView/LoadingPlaceholderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/LoadingPlaceholderView/LoadingPlaceholderView.swift -------------------------------------------------------------------------------- /LoadingPlaceholderView/UIBezierPath+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/LoadingPlaceholderView/UIBezierPath+.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeResources/collectionView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/ReadmeResources/collectionView.gif -------------------------------------------------------------------------------- /ReadmeResources/mixedComponents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/ReadmeResources/mixedComponents.gif -------------------------------------------------------------------------------- /ReadmeResources/tableView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioIannotta/LoadingPlaceholderView/HEAD/ReadmeResources/tableView.gif -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------