├── README.md ├── TYLaunchAnimation.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── tanyang.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── TYLaunchAnimation ├── TYLaunchAnimationProtocol.h ├── TYLaunchBaseAnimation.h ├── TYLaunchBaseAnimation.m ├── TYLaunchFadeScaleAnimation.h ├── TYLaunchFadeScaleAnimation.m ├── UIImage+TYLaunchImage.h ├── UIImage+TYLaunchImage.m ├── UIView+TYLaunchAnimation.h └── UIView+TYLaunchAnimation.m ├── TYLaunchAnimationAdDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── tanyang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── tanyang.xcuserdatad │ └── xcschemes │ ├── TYLaunchAnimationAdDemo.xcscheme │ └── xcschememanagement.plist ├── TYLaunchAnimationAdDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-568h@2x.png │ │ ├── LaunchImage-800-667h@2x.png │ │ ├── LaunchImage-800-Portrait-736h@3x.png │ │ └── LaunchImage@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TAdLaunchImageView.h ├── TAdLaunchImageView.m ├── ViewController.h ├── ViewController.m └── main.m ├── TYLaunchAnimationDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── 233wangxiao.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── TYLaunchAnimationDemo.xcscheme │ │ └── xcschememanagement.plist │ └── tanyang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TYLaunchAnimationDemo.xcscheme │ └── xcschememanagement.plist ├── TYLaunchAnimationDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-568h@2x.png │ │ ├── LaunchImage-800-667h@2x.png │ │ ├── LaunchImage-800-Portrait-736h@3x.png │ │ └── LaunchImage@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── screenshot ├── TYLanunchAnimaiton1.gif ├── TYLanunchAnimaiton2.gif └── TYLanunchAnimaiton3.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/README.md -------------------------------------------------------------------------------- /TYLaunchAnimation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TYLaunchAnimation.xcworkspace/xcuserdata/tanyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation.xcworkspace/xcuserdata/tanyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TYLaunchAnimation.xcworkspace/xcuserdata/tanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation.xcworkspace/xcuserdata/tanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TYLaunchAnimation/TYLaunchAnimationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/TYLaunchAnimationProtocol.h -------------------------------------------------------------------------------- /TYLaunchAnimation/TYLaunchBaseAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/TYLaunchBaseAnimation.h -------------------------------------------------------------------------------- /TYLaunchAnimation/TYLaunchBaseAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/TYLaunchBaseAnimation.m -------------------------------------------------------------------------------- /TYLaunchAnimation/TYLaunchFadeScaleAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/TYLaunchFadeScaleAnimation.h -------------------------------------------------------------------------------- /TYLaunchAnimation/TYLaunchFadeScaleAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/TYLaunchFadeScaleAnimation.m -------------------------------------------------------------------------------- /TYLaunchAnimation/UIImage+TYLaunchImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/UIImage+TYLaunchImage.h -------------------------------------------------------------------------------- /TYLaunchAnimation/UIImage+TYLaunchImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/UIImage+TYLaunchImage.m -------------------------------------------------------------------------------- /TYLaunchAnimation/UIView+TYLaunchAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/UIView+TYLaunchAnimation.h -------------------------------------------------------------------------------- /TYLaunchAnimation/UIView+TYLaunchAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimation/UIView+TYLaunchAnimation.m -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo.xcodeproj/project.xcworkspace/xcuserdata/tanyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo.xcodeproj/project.xcworkspace/xcuserdata/tanyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/TYLaunchAnimationAdDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/TYLaunchAnimationAdDemo.xcscheme -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/AppDelegate.h -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/AppDelegate.m -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/Info.plist -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/TAdLaunchImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/TAdLaunchImageView.h -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/TAdLaunchImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/TAdLaunchImageView.m -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/ViewController.h -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/ViewController.m -------------------------------------------------------------------------------- /TYLaunchAnimationAdDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationAdDemo/main.m -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/TYLaunchAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/TYLaunchAnimationDemo.xcscheme -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/TYLaunchAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/TYLaunchAnimationDemo.xcscheme -------------------------------------------------------------------------------- /TYLaunchAnimationDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/AppDelegate.h -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/AppDelegate.m -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/Info.plist -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/ViewController.h -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/ViewController.m -------------------------------------------------------------------------------- /TYLaunchAnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/TYLaunchAnimationDemo/main.m -------------------------------------------------------------------------------- /screenshot/TYLanunchAnimaiton1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/screenshot/TYLanunchAnimaiton1.gif -------------------------------------------------------------------------------- /screenshot/TYLanunchAnimaiton2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/screenshot/TYLanunchAnimaiton2.gif -------------------------------------------------------------------------------- /screenshot/TYLanunchAnimaiton3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYLaunchAnimation/HEAD/screenshot/TYLanunchAnimaiton3.gif --------------------------------------------------------------------------------