gitextract_nu9a22ug/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Examples/ │ ├── Examples.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Logo-iOS.xcscheme │ ├── LICENSE │ └── Logo-iOS/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj/ │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ └── Wallpaper.imageset/ │ │ └── Contents.json │ ├── Logo-iOS-Info.plist │ ├── Logo-iOS-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj/ │ │ └── InfoPlist.strings │ └── main.m ├── FBShimmering/ │ ├── FBShimmering-Prefix.pch │ ├── FBShimmering.h │ ├── FBShimmeringLayer.h │ ├── FBShimmeringLayer.m │ ├── FBShimmeringView.h │ └── FBShimmeringView.m ├── FBShimmering.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── FBShimmering.xcscheme │ └── Framework.xcscheme ├── FBShimmering.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── Framework/ │ ├── Info.plist │ └── Shimmer.h ├── LICENSE ├── README.md └── Shimmer.podspec