├── .gitignore ├── HSPresentTransitionDemo ├── HSPresentTransitionDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── HSPresentTransitionDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── HSLeftPresentAnimation.h │ ├── HSLeftPresentAnimation.m │ ├── HSPresentationController.h │ ├── HSPresentationController.m │ ├── Info.plist │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── ThirdViewController.h │ ├── ThirdViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── HSPushPopTransitionDemo ├── HSPushPopTransitionDemo.xcodeproj │ └── project.pbxproj └── HSPushPopTransitionDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── HSPopAnimation.h │ ├── HSPopAnimation.m │ ├── HSPushAnimation.h │ ├── HSPushAnimation.m │ ├── Info.plist │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── HSTransitionAnimationDemo.xcworkspace └── contents.xcworkspacedata ├── README.md ├── iOS自定义转场动画-present和dismiss.md └── iOS自定义转场动画-push和pop.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/AppDelegate.h -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/AppDelegate.m -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/HSLeftPresentAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/HSLeftPresentAnimation.h -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/HSLeftPresentAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/HSLeftPresentAnimation.m -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/HSPresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/HSPresentationController.h -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/HSPresentationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/HSPresentationController.m -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/Info.plist -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/SecondViewController.h -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/SecondViewController.m -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/ThirdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/ThirdViewController.h -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/ThirdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/ThirdViewController.m -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/ViewController.h -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/ViewController.m -------------------------------------------------------------------------------- /HSPresentTransitionDemo/HSPresentTransitionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPresentTransitionDemo/HSPresentTransitionDemo/main.m -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/AppDelegate.h -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/AppDelegate.m -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPopAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPopAnimation.h -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPopAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPopAnimation.m -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPushAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPushAnimation.h -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPushAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/HSPushAnimation.m -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/Info.plist -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/SecondViewController.h -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/SecondViewController.m -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/ViewController.h -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/ViewController.m -------------------------------------------------------------------------------- /HSPushPopTransitionDemo/HSPushPopTransitionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSPushPopTransitionDemo/HSPushPopTransitionDemo/main.m -------------------------------------------------------------------------------- /HSTransitionAnimationDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/HSTransitionAnimationDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/README.md -------------------------------------------------------------------------------- /iOS自定义转场动画-present和dismiss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/iOS自定义转场动画-present和dismiss.md -------------------------------------------------------------------------------- /iOS自定义转场动画-push和pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FantasySwords/HSPresentTransitionDemo/HEAD/iOS自定义转场动画-push和pop.md --------------------------------------------------------------------------------