├── .gitignore ├── AE-Files ├── Adobe After Effects Auto-Save │ └── Edit auto-save 1.aep ├── Edit.aep ├── Play-Pause.aep ├── RectComp.aep └── Switch.aep ├── Example-Gifs ├── 上下拉刷新动画.gif ├── 加载(loading)动画+提示(tips)动画.gif ├── 启动(splash)动画.gif ├── 按钮(button)动画+礼物(gift)动画.gif ├── 添加视图到Layer层.gif └── 转场动画.gif ├── Lottie-Files ├── Edit.json ├── EmptyStatus.json ├── HappyBirthday.json ├── Loading.json ├── LottieLogo.json ├── Play-Pause.json ├── RectComp.json ├── RefreshFooterAnim.json ├── RefreshHeaderAnim.json ├── Switch.json ├── vcTransition1.json └── vcTransition2.json ├── LottieExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── York.xcuserdatad │ └── xcschemes │ ├── LottieExample.xcscheme │ └── xcschememanagement.plist ├── LottieExample ├── AnimRefreshFooter.h ├── AnimRefreshFooter.m ├── AnimRefreshHeader.h ├── AnimRefreshHeader.m ├── AnimTransitionViewController.h ├── AnimTransitionViewController.m ├── AnimTransitionViewController.xib ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── ButtonAnimViewController.h ├── ButtonAnimViewController.m ├── Info.plist ├── LoadingAnimViewController.h ├── LoadingAnimViewController.m ├── MainViewController.h ├── MainViewController.m ├── MainViewController.xib ├── SplashView.h ├── SplashView.m ├── UIView+EmptyStatus.h ├── UIView+EmptyStatus.m ├── ViewInToLayerViewController.h ├── ViewInToLayerViewController.m ├── ViewInToLayerViewController.xib └── main.m ├── Podfile ├── Podfile.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/.gitignore -------------------------------------------------------------------------------- /AE-Files/Adobe After Effects Auto-Save/Edit auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/AE-Files/Adobe After Effects Auto-Save/Edit auto-save 1.aep -------------------------------------------------------------------------------- /AE-Files/Edit.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/AE-Files/Edit.aep -------------------------------------------------------------------------------- /AE-Files/Play-Pause.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/AE-Files/Play-Pause.aep -------------------------------------------------------------------------------- /AE-Files/RectComp.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/AE-Files/RectComp.aep -------------------------------------------------------------------------------- /AE-Files/Switch.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/AE-Files/Switch.aep -------------------------------------------------------------------------------- /Example-Gifs/上下拉刷新动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Example-Gifs/上下拉刷新动画.gif -------------------------------------------------------------------------------- /Example-Gifs/加载(loading)动画+提示(tips)动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Example-Gifs/加载(loading)动画+提示(tips)动画.gif -------------------------------------------------------------------------------- /Example-Gifs/启动(splash)动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Example-Gifs/启动(splash)动画.gif -------------------------------------------------------------------------------- /Example-Gifs/按钮(button)动画+礼物(gift)动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Example-Gifs/按钮(button)动画+礼物(gift)动画.gif -------------------------------------------------------------------------------- /Example-Gifs/添加视图到Layer层.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Example-Gifs/添加视图到Layer层.gif -------------------------------------------------------------------------------- /Example-Gifs/转场动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Example-Gifs/转场动画.gif -------------------------------------------------------------------------------- /Lottie-Files/Edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/Edit.json -------------------------------------------------------------------------------- /Lottie-Files/EmptyStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/EmptyStatus.json -------------------------------------------------------------------------------- /Lottie-Files/HappyBirthday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/HappyBirthday.json -------------------------------------------------------------------------------- /Lottie-Files/Loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/Loading.json -------------------------------------------------------------------------------- /Lottie-Files/LottieLogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/LottieLogo.json -------------------------------------------------------------------------------- /Lottie-Files/Play-Pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/Play-Pause.json -------------------------------------------------------------------------------- /Lottie-Files/RectComp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/RectComp.json -------------------------------------------------------------------------------- /Lottie-Files/RefreshFooterAnim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/RefreshFooterAnim.json -------------------------------------------------------------------------------- /Lottie-Files/RefreshHeaderAnim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/RefreshHeaderAnim.json -------------------------------------------------------------------------------- /Lottie-Files/Switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/Switch.json -------------------------------------------------------------------------------- /Lottie-Files/vcTransition1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/vcTransition1.json -------------------------------------------------------------------------------- /Lottie-Files/vcTransition2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Lottie-Files/vcTransition2.json -------------------------------------------------------------------------------- /LottieExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LottieExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LottieExample.xcodeproj/xcuserdata/York.xcuserdatad/xcschemes/LottieExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample.xcodeproj/xcuserdata/York.xcuserdatad/xcschemes/LottieExample.xcscheme -------------------------------------------------------------------------------- /LottieExample.xcodeproj/xcuserdata/York.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample.xcodeproj/xcuserdata/York.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LottieExample/AnimRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimRefreshFooter.h -------------------------------------------------------------------------------- /LottieExample/AnimRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimRefreshFooter.m -------------------------------------------------------------------------------- /LottieExample/AnimRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimRefreshHeader.h -------------------------------------------------------------------------------- /LottieExample/AnimRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimRefreshHeader.m -------------------------------------------------------------------------------- /LottieExample/AnimTransitionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimTransitionViewController.h -------------------------------------------------------------------------------- /LottieExample/AnimTransitionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimTransitionViewController.m -------------------------------------------------------------------------------- /LottieExample/AnimTransitionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AnimTransitionViewController.xib -------------------------------------------------------------------------------- /LottieExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AppDelegate.h -------------------------------------------------------------------------------- /LottieExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/AppDelegate.m -------------------------------------------------------------------------------- /LottieExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LottieExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LottieExample/ButtonAnimViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/ButtonAnimViewController.h -------------------------------------------------------------------------------- /LottieExample/ButtonAnimViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/ButtonAnimViewController.m -------------------------------------------------------------------------------- /LottieExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/Info.plist -------------------------------------------------------------------------------- /LottieExample/LoadingAnimViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/LoadingAnimViewController.h -------------------------------------------------------------------------------- /LottieExample/LoadingAnimViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/LoadingAnimViewController.m -------------------------------------------------------------------------------- /LottieExample/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/MainViewController.h -------------------------------------------------------------------------------- /LottieExample/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/MainViewController.m -------------------------------------------------------------------------------- /LottieExample/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/MainViewController.xib -------------------------------------------------------------------------------- /LottieExample/SplashView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/SplashView.h -------------------------------------------------------------------------------- /LottieExample/SplashView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/SplashView.m -------------------------------------------------------------------------------- /LottieExample/UIView+EmptyStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/UIView+EmptyStatus.h -------------------------------------------------------------------------------- /LottieExample/UIView+EmptyStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/UIView+EmptyStatus.m -------------------------------------------------------------------------------- /LottieExample/ViewInToLayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/ViewInToLayerViewController.h -------------------------------------------------------------------------------- /LottieExample/ViewInToLayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/ViewInToLayerViewController.m -------------------------------------------------------------------------------- /LottieExample/ViewInToLayerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/ViewInToLayerViewController.xib -------------------------------------------------------------------------------- /LottieExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/LottieExample/main.m -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YK-Unit/LottieExample/HEAD/README.md --------------------------------------------------------------------------------