├── .gitignore ├── Classes ├── UIView+Shimmer.h └── UIView+Shimmer.m ├── Demo ├── Podfile ├── ShimmerTest.xcodeproj │ └── project.pbxproj └── ShimmerTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── Main_iPad.storyboard │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── ShimmerTest-Info.plist │ ├── ShimmerTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ └── InfoPlist.strings │ ├── main.m │ └── sample.png ├── LICENSE ├── README.md ├── UIView+Shimmer.podspec └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/UIView+Shimmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Classes/UIView+Shimmer.h -------------------------------------------------------------------------------- /Classes/UIView+Shimmer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Classes/UIView+Shimmer.m -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, "7.0" 2 | 3 | pod 'UIView+Shimmer' 4 | -------------------------------------------------------------------------------- /Demo/ShimmerTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/ShimmerTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/AppDelegate.h -------------------------------------------------------------------------------- /Demo/ShimmerTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/AppDelegate.m -------------------------------------------------------------------------------- /Demo/ShimmerTest/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Demo/ShimmerTest/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Demo/ShimmerTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/ShimmerTest/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/ShimmerTest/ShimmerTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/ShimmerTest-Info.plist -------------------------------------------------------------------------------- /Demo/ShimmerTest/ShimmerTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/ShimmerTest-Prefix.pch -------------------------------------------------------------------------------- /Demo/ShimmerTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/ViewController.h -------------------------------------------------------------------------------- /Demo/ShimmerTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/ViewController.m -------------------------------------------------------------------------------- /Demo/ShimmerTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/ShimmerTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/main.m -------------------------------------------------------------------------------- /Demo/ShimmerTest/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/Demo/ShimmerTest/sample.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/README.md -------------------------------------------------------------------------------- /UIView+Shimmer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/UIView+Shimmer.podspec -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markiv/UIView-Shimmer/HEAD/demo.gif --------------------------------------------------------------------------------