├── Example ├── ShimmerView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── Guillian.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Guillian.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ShimmerView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── img.imageset │ │ ├── Capture d’écran 2019-07-23 à 10.53.28.png │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CollectionViewController.swift │ ├── Info.plist │ ├── ShimmerView │ ├── ShimmerAnimation.swift │ ├── ShimmerOptions.swift │ ├── UICollectionView+Shimmer.swift │ ├── UITableView+Shimmer.swift │ └── UIView+Shimmer.swift │ ├── TableViewController.swift │ └── ViewController.swift ├── LICENSE ├── README.md ├── ShimmerView ├── ShimmerAnimation.swift ├── ShimmerOptions.swift ├── UICollectionView+Shimmer.swift ├── UITableView+Shimmer.swift └── UIView+Shimmer.swift └── example_images ├── activate_shimmer.png ├── activate_shimmer_IB.png ├── classic_shimmer.gif ├── classic_shimmer_color.gif ├── classic_shimmer_color_no_border.gif ├── fade_shimmer.gif └── tableview_shimmer_classic.gif /Example/ShimmerView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ShimmerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ShimmerView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ShimmerView.xcodeproj/project.xcworkspace/xcuserdata/Guillian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView.xcodeproj/project.xcworkspace/xcuserdata/Guillian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ShimmerView.xcodeproj/xcuserdata/Guillian.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView.xcodeproj/xcuserdata/Guillian.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/ShimmerView.xcodeproj/xcuserdata/Guillian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView.xcodeproj/xcuserdata/Guillian.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/ShimmerView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ShimmerView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ShimmerView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ShimmerView/Assets.xcassets/img.imageset/Capture d’écran 2019-07-23 à 10.53.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Assets.xcassets/img.imageset/Capture d’écran 2019-07-23 à 10.53.28.png -------------------------------------------------------------------------------- /Example/ShimmerView/Assets.xcassets/img.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Assets.xcassets/img.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ShimmerView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ShimmerView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ShimmerView/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/CollectionViewController.swift -------------------------------------------------------------------------------- /Example/ShimmerView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/Info.plist -------------------------------------------------------------------------------- /Example/ShimmerView/ShimmerView/ShimmerAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/ShimmerView/ShimmerAnimation.swift -------------------------------------------------------------------------------- /Example/ShimmerView/ShimmerView/ShimmerOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/ShimmerView/ShimmerOptions.swift -------------------------------------------------------------------------------- /Example/ShimmerView/ShimmerView/UICollectionView+Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/ShimmerView/UICollectionView+Shimmer.swift -------------------------------------------------------------------------------- /Example/ShimmerView/ShimmerView/UITableView+Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/ShimmerView/UITableView+Shimmer.swift -------------------------------------------------------------------------------- /Example/ShimmerView/ShimmerView/UIView+Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/ShimmerView/UIView+Shimmer.swift -------------------------------------------------------------------------------- /Example/ShimmerView/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/TableViewController.swift -------------------------------------------------------------------------------- /Example/ShimmerView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/Example/ShimmerView/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/README.md -------------------------------------------------------------------------------- /ShimmerView/ShimmerAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/ShimmerView/ShimmerAnimation.swift -------------------------------------------------------------------------------- /ShimmerView/ShimmerOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/ShimmerView/ShimmerOptions.swift -------------------------------------------------------------------------------- /ShimmerView/UICollectionView+Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/ShimmerView/UICollectionView+Shimmer.swift -------------------------------------------------------------------------------- /ShimmerView/UITableView+Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/ShimmerView/UITableView+Shimmer.swift -------------------------------------------------------------------------------- /ShimmerView/UIView+Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/ShimmerView/UIView+Shimmer.swift -------------------------------------------------------------------------------- /example_images/activate_shimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/activate_shimmer.png -------------------------------------------------------------------------------- /example_images/activate_shimmer_IB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/activate_shimmer_IB.png -------------------------------------------------------------------------------- /example_images/classic_shimmer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/classic_shimmer.gif -------------------------------------------------------------------------------- /example_images/classic_shimmer_color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/classic_shimmer_color.gif -------------------------------------------------------------------------------- /example_images/classic_shimmer_color_no_border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/classic_shimmer_color_no_border.gif -------------------------------------------------------------------------------- /example_images/fade_shimmer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/fade_shimmer.gif -------------------------------------------------------------------------------- /example_images/tableview_shimmer_classic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBzul/SimpleShimmer/HEAD/example_images/tableview_shimmer_classic.gif --------------------------------------------------------------------------------