├── .gitignore ├── LICENSE ├── README.md ├── Transition.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── Transition ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Cancel.imageset │ ├── Contents.json │ └── cancel_filled.png ├── Circle.imageset │ ├── Contents.json │ └── full_moon_filled.png ├── Clover.imageset │ ├── Contents.json │ └── three_leaf_clover_filled.png ├── Contents.json ├── Dialog.imageset │ ├── Contents.json │ └── comments_filled.png ├── Ghost QR.imageset │ ├── Contents.json │ └── Ghost.png ├── Ghost.imageset │ ├── Contents.json │ └── ghost_filled.png ├── Groups.imageset │ ├── Contents.json │ └── groups_filled.png ├── Hey.imageset │ ├── Contents.json │ └── IMG_9532.jpg └── Snapchat.imageset │ ├── Contents.json │ └── snapchat_filled.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── View Controllers ├── Container │ ├── ContainerChildViewController.h │ ├── ContainerChildViewController.m │ ├── ContainerViewController.h │ └── ContainerViewController.m └── Implementation │ ├── MainViewController.h │ ├── MainViewController.m │ ├── ProfileViewController.h │ └── ProfileViewController.m ├── cancel_filled.png ├── dislike_filled.png ├── ghost_filled.png ├── groups_filled.png ├── main.m ├── snapchat_filled.png └── three_leaf_clover_filled.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/README.md -------------------------------------------------------------------------------- /Transition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Transition.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Transition/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/AppDelegate.h -------------------------------------------------------------------------------- /Transition/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/AppDelegate.m -------------------------------------------------------------------------------- /Transition/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Cancel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Cancel.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Cancel.imageset/cancel_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Cancel.imageset/cancel_filled.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Circle.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Circle.imageset/full_moon_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Circle.imageset/full_moon_filled.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Clover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Clover.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Clover.imageset/three_leaf_clover_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Clover.imageset/three_leaf_clover_filled.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Dialog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Dialog.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Dialog.imageset/comments_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Dialog.imageset/comments_filled.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Ghost QR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Ghost QR.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Ghost QR.imageset/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Ghost QR.imageset/Ghost.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Ghost.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Ghost.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Ghost.imageset/ghost_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Ghost.imageset/ghost_filled.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Groups.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Groups.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Groups.imageset/groups_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Groups.imageset/groups_filled.png -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Hey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Hey.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Hey.imageset/IMG_9532.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Hey.imageset/IMG_9532.jpg -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Snapchat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Snapchat.imageset/Contents.json -------------------------------------------------------------------------------- /Transition/Assets.xcassets/Snapchat.imageset/snapchat_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Assets.xcassets/Snapchat.imageset/snapchat_filled.png -------------------------------------------------------------------------------- /Transition/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Transition/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Transition/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/Info.plist -------------------------------------------------------------------------------- /Transition/View Controllers/Container/ContainerChildViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Container/ContainerChildViewController.h -------------------------------------------------------------------------------- /Transition/View Controllers/Container/ContainerChildViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Container/ContainerChildViewController.m -------------------------------------------------------------------------------- /Transition/View Controllers/Container/ContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Container/ContainerViewController.h -------------------------------------------------------------------------------- /Transition/View Controllers/Container/ContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Container/ContainerViewController.m -------------------------------------------------------------------------------- /Transition/View Controllers/Implementation/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Implementation/MainViewController.h -------------------------------------------------------------------------------- /Transition/View Controllers/Implementation/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Implementation/MainViewController.m -------------------------------------------------------------------------------- /Transition/View Controllers/Implementation/ProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Implementation/ProfileViewController.h -------------------------------------------------------------------------------- /Transition/View Controllers/Implementation/ProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/View Controllers/Implementation/ProfileViewController.m -------------------------------------------------------------------------------- /Transition/cancel_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/cancel_filled.png -------------------------------------------------------------------------------- /Transition/dislike_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/dislike_filled.png -------------------------------------------------------------------------------- /Transition/ghost_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/ghost_filled.png -------------------------------------------------------------------------------- /Transition/groups_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/groups_filled.png -------------------------------------------------------------------------------- /Transition/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/main.m -------------------------------------------------------------------------------- /Transition/snapchat_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/snapchat_filled.png -------------------------------------------------------------------------------- /Transition/three_leaf_clover_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablo-e-romero/Custom-Transition/HEAD/Transition/three_leaf_clover_filled.png --------------------------------------------------------------------------------