├── README.md ├── 仿AppStore首页跳转动画.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── 仿AppStore首页跳转动画 ├── ABC.pch ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── fengjing2.imageset │ │ ├── Contents.json │ │ └── fengjing2.jpg │ ├── fireman.imageset │ │ ├── Contents.json │ │ └── fireman.jpg │ ├── meinv1.imageset │ │ ├── Contents.json │ │ └── meinv1.jpg │ ├── 关闭.imageset │ │ ├── Contents.json │ │ └── 关闭.png │ └── 取消.imageset │ │ ├── Contents.json │ │ └── 取消.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── MyCell.h ├── MyCell.m ├── UIScrollView+ScrollMathod.h ├── UIScrollView+ScrollMathod.m ├── ViewController.h ├── ViewController.m ├── main.m └── 仿AppStore首页跳转动画-Bridging-Header.h └── 效果.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/README.md -------------------------------------------------------------------------------- /仿AppStore首页跳转动画.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /仿AppStore首页跳转动画.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/ABC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/ABC.pch -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/AppDelegate.h -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/AppDelegate.m -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/fengjing2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/fengjing2.imageset/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/fengjing2.imageset/fengjing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/fengjing2.imageset/fengjing2.jpg -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/fireman.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/fireman.imageset/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/fireman.imageset/fireman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/fireman.imageset/fireman.jpg -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/meinv1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/meinv1.imageset/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/meinv1.imageset/meinv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/meinv1.imageset/meinv1.jpg -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/关闭.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/关闭.imageset/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/关闭.imageset/关闭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/关闭.imageset/关闭.png -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/取消.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/取消.imageset/Contents.json -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Assets.xcassets/取消.imageset/取消.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Assets.xcassets/取消.imageset/取消.png -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/Info.plist -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/MyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/MyCell.h -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/MyCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/MyCell.m -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/UIScrollView+ScrollMathod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/UIScrollView+ScrollMathod.h -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/UIScrollView+ScrollMathod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/UIScrollView+ScrollMathod.m -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/ViewController.h -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/ViewController.m -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/main.m -------------------------------------------------------------------------------- /仿AppStore首页跳转动画/仿AppStore首页跳转动画-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/仿AppStore首页跳转动画/仿AppStore首页跳转动画-Bridging-Header.h -------------------------------------------------------------------------------- /效果.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caimengnan/AppStoreAnimation/HEAD/效果.gif --------------------------------------------------------------------------------