├── .LYEmptyView.podspec.swo ├── .LYEmptyView.podspec.swp ├── .gitignore ├── LICENSE ├── LYEmptyView.podspec ├── LYEmptyView ├── LYEmptyBaseView.h ├── LYEmptyBaseView.m ├── LYEmptyView.h ├── LYEmptyView.m ├── LYEmptyViewHeader.h ├── UIView+Empty.h ├── UIView+Empty.m ├── UIView+LYExtension.h └── UIView+LYExtension.m ├── LYEmptyViewDemo.xcodeproj └── project.pbxproj ├── LYEmptyViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── empty_image │ │ ├── Contents.json │ │ ├── empty_jd.imageset │ │ │ ├── Contents.json │ │ │ └── empty_jd@2x.png │ │ ├── empty_meituan.imageset │ │ │ ├── Contents.json │ │ │ └── empty_meituan@2x.PNG │ │ ├── empty_qq.imageset │ │ │ ├── Contents.json │ │ │ └── empty_qq@2x.PNG │ │ ├── empty_weibo.imageset │ │ │ ├── Contents.json │ │ │ └── empty_weibo@2x.PNG │ │ └── empty_yy.imageset │ │ │ ├── Contents.json │ │ │ └── empty_yy@2x.PNG │ ├── noData.imageset │ │ ├── Contents.json │ │ └── nodata@2x.png │ └── noNetwork.imageset │ │ ├── Contents.json │ │ └── noNetwork@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classes │ ├── BaseDemoViewController.h │ ├── BaseDemoViewController.m │ ├── BaseDemoViewController.xib │ ├── DIY │ │ ├── MyDIYEmpty.h │ │ ├── MyDIYEmpty.m │ │ ├── MyDIYViewController.h │ │ ├── MyDIYViewController.m │ │ └── MyDIYViewController.xib │ ├── Demo │ │ ├── Demo1ViewController.h │ │ ├── Demo1ViewController.m │ │ ├── Demo2ViewController.h │ │ ├── Demo2ViewController.m │ │ ├── Demo3ViewController.h │ │ ├── Demo3ViewController.m │ │ ├── Demo4ViewController.h │ │ ├── Demo4ViewController.m │ │ ├── Demo5ViewController.h │ │ ├── Demo5ViewController.m │ │ ├── Demo6ViewController.h │ │ ├── Demo6ViewController.m │ │ ├── DemoEmptyView.h │ │ └── DemoEmptyView.m │ └── OtherApp │ │ ├── OtherAppViewController.h │ │ ├── OtherAppViewController.m │ │ └── OtherAppViewController.xib ├── HomeListViewController.h ├── HomeListViewController.m ├── HomeListViewController.xib ├── Info.plist ├── PrefixHeader.pch ├── ThirdPart │ └── MB │ │ ├── MBProgressHUD.h │ │ └── MBProgressHUD.m └── main.m ├── LYEmptyViewDemoTests ├── Info.plist └── LYEmptyViewDemoTests.m ├── LYEmptyViewDemoUITests ├── Info.plist └── LYEmptyViewDemoUITests.m ├── README.md └── images ├── ImitateOtherApp.png ├── example1.gif ├── example2.png ├── example3.png ├── example4.png ├── example6.gif ├── example7.gif └── method_swizzling.png /.LYEmptyView.podspec.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/.LYEmptyView.podspec.swo -------------------------------------------------------------------------------- /.LYEmptyView.podspec.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/.LYEmptyView.podspec.swp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LICENSE -------------------------------------------------------------------------------- /LYEmptyView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView.podspec -------------------------------------------------------------------------------- /LYEmptyView/LYEmptyBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/LYEmptyBaseView.h -------------------------------------------------------------------------------- /LYEmptyView/LYEmptyBaseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/LYEmptyBaseView.m -------------------------------------------------------------------------------- /LYEmptyView/LYEmptyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/LYEmptyView.h -------------------------------------------------------------------------------- /LYEmptyView/LYEmptyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/LYEmptyView.m -------------------------------------------------------------------------------- /LYEmptyView/LYEmptyViewHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/LYEmptyViewHeader.h -------------------------------------------------------------------------------- /LYEmptyView/UIView+Empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/UIView+Empty.h -------------------------------------------------------------------------------- /LYEmptyView/UIView+Empty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/UIView+Empty.m -------------------------------------------------------------------------------- /LYEmptyView/UIView+LYExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/UIView+LYExtension.h -------------------------------------------------------------------------------- /LYEmptyView/UIView+LYExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyView/UIView+LYExtension.m -------------------------------------------------------------------------------- /LYEmptyViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LYEmptyViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_jd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_jd.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_jd.imageset/empty_jd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_jd.imageset/empty_jd@2x.png -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_meituan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_meituan.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_meituan.imageset/empty_meituan@2x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_meituan.imageset/empty_meituan@2x.PNG -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_qq.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_qq.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_qq.imageset/empty_qq@2x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_qq.imageset/empty_qq@2x.PNG -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_weibo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_weibo.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_weibo.imageset/empty_weibo@2x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_weibo.imageset/empty_weibo@2x.PNG -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_yy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_yy.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/empty_image/empty_yy.imageset/empty_yy@2x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/empty_image/empty_yy.imageset/empty_yy@2x.PNG -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/noData.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/noData.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/noData.imageset/nodata@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/noData.imageset/nodata@2x.png -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/noNetwork.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/noNetwork.imageset/Contents.json -------------------------------------------------------------------------------- /LYEmptyViewDemo/Assets.xcassets/noNetwork.imageset/noNetwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Assets.xcassets/noNetwork.imageset/noNetwork@2x.png -------------------------------------------------------------------------------- /LYEmptyViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LYEmptyViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/BaseDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/BaseDemoViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/BaseDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/BaseDemoViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/BaseDemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/BaseDemoViewController.xib -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/DIY/MyDIYEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/DIY/MyDIYEmpty.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/DIY/MyDIYEmpty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/DIY/MyDIYEmpty.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/DIY/MyDIYViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/DIY/MyDIYViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/DIY/MyDIYViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/DIY/MyDIYViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/DIY/MyDIYViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/DIY/MyDIYViewController.xib -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo1ViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo1ViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo2ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo2ViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo2ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo2ViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo3ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo3ViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo3ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo3ViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo4ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo4ViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo4ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo4ViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo5ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo5ViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo5ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo5ViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo6ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo6ViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/Demo6ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/Demo6ViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/DemoEmptyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/DemoEmptyView.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/Demo/DemoEmptyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/Demo/DemoEmptyView.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/OtherApp/OtherAppViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/OtherApp/OtherAppViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/OtherApp/OtherAppViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/OtherApp/OtherAppViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/Classes/OtherApp/OtherAppViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Classes/OtherApp/OtherAppViewController.xib -------------------------------------------------------------------------------- /LYEmptyViewDemo/HomeListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/HomeListViewController.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/HomeListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/HomeListViewController.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/HomeListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/HomeListViewController.xib -------------------------------------------------------------------------------- /LYEmptyViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/Info.plist -------------------------------------------------------------------------------- /LYEmptyViewDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /LYEmptyViewDemo/ThirdPart/MB/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/ThirdPart/MB/MBProgressHUD.h -------------------------------------------------------------------------------- /LYEmptyViewDemo/ThirdPart/MB/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/ThirdPart/MB/MBProgressHUD.m -------------------------------------------------------------------------------- /LYEmptyViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemo/main.m -------------------------------------------------------------------------------- /LYEmptyViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemoTests/Info.plist -------------------------------------------------------------------------------- /LYEmptyViewDemoTests/LYEmptyViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemoTests/LYEmptyViewDemoTests.m -------------------------------------------------------------------------------- /LYEmptyViewDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemoUITests/Info.plist -------------------------------------------------------------------------------- /LYEmptyViewDemoUITests/LYEmptyViewDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/LYEmptyViewDemoUITests/LYEmptyViewDemoUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/README.md -------------------------------------------------------------------------------- /images/ImitateOtherApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/ImitateOtherApp.png -------------------------------------------------------------------------------- /images/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/example1.gif -------------------------------------------------------------------------------- /images/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/example2.png -------------------------------------------------------------------------------- /images/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/example3.png -------------------------------------------------------------------------------- /images/example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/example4.png -------------------------------------------------------------------------------- /images/example6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/example6.gif -------------------------------------------------------------------------------- /images/example7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/example7.gif -------------------------------------------------------------------------------- /images/method_swizzling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-liyang/LYEmptyView/HEAD/images/method_swizzling.png --------------------------------------------------------------------------------