├── README.md ├── SLImageLoader.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── liusilan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── liusilan.xcuserdatad │ └── xcschemes │ ├── SLImageLoader.xcscheme │ └── xcschememanagement.plist ├── SLImageLoader ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── ImageLoader │ ├── SLImageLoaderView.h │ ├── SLImageLoaderView.m │ ├── UIImageView+SLImageLoader.h │ └── UIImageView+SLImageLoader.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m ├── main.m └── test@2x.png └── SLImageLoaderTests ├── Info.plist └── SLImageLoaderTests.m /README.md: -------------------------------------------------------------------------------- 1 | # SLImageLoader 2 | 图片加载动画 3 | 像水波形式的,由中心像四周展开的动画 4 | -------------------------------------------------------------------------------- /SLImageLoader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SLImageLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SLImageLoader.xcodeproj/project.xcworkspace/xcuserdata/liusilan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader.xcodeproj/project.xcworkspace/xcuserdata/liusilan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SLImageLoader.xcodeproj/xcuserdata/liusilan.xcuserdatad/xcschemes/SLImageLoader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader.xcodeproj/xcuserdata/liusilan.xcuserdatad/xcschemes/SLImageLoader.xcscheme -------------------------------------------------------------------------------- /SLImageLoader.xcodeproj/xcuserdata/liusilan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader.xcodeproj/xcuserdata/liusilan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SLImageLoader/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/AppDelegate.h -------------------------------------------------------------------------------- /SLImageLoader/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/AppDelegate.m -------------------------------------------------------------------------------- /SLImageLoader/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SLImageLoader/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SLImageLoader/ImageLoader/SLImageLoaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/ImageLoader/SLImageLoaderView.h -------------------------------------------------------------------------------- /SLImageLoader/ImageLoader/SLImageLoaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/ImageLoader/SLImageLoaderView.m -------------------------------------------------------------------------------- /SLImageLoader/ImageLoader/UIImageView+SLImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/ImageLoader/UIImageView+SLImageLoader.h -------------------------------------------------------------------------------- /SLImageLoader/ImageLoader/UIImageView+SLImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/ImageLoader/UIImageView+SLImageLoader.m -------------------------------------------------------------------------------- /SLImageLoader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SLImageLoader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/Info.plist -------------------------------------------------------------------------------- /SLImageLoader/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/ViewController.h -------------------------------------------------------------------------------- /SLImageLoader/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/ViewController.m -------------------------------------------------------------------------------- /SLImageLoader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/main.m -------------------------------------------------------------------------------- /SLImageLoader/test@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoader/test@2x.png -------------------------------------------------------------------------------- /SLImageLoaderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoaderTests/Info.plist -------------------------------------------------------------------------------- /SLImageLoaderTests/SLImageLoaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silan-liu/SLImageLoader/HEAD/SLImageLoaderTests/SLImageLoaderTests.m --------------------------------------------------------------------------------