├── README.md ├── SmoothTransitionDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── SmoothTransitionDemo.xccheckout │ └── xcuserdata │ │ ├── Delpan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── apple.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Delpan.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── SmoothTransitionDemo.xcscheme │ │ └── xcschememanagement.plist │ └── apple.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SmoothTransitionDemo.xcscheme │ └── xcschememanagement.plist ├── SmoothTransitionDemo ├── AppDelegate │ ├── AppDelegate.h │ └── AppDelegate.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Launch Screen.xib ├── Resources │ ├── left@2x.png │ └── left@3x.png ├── SmoothTransitionDemo-Info.plist ├── SmoothTransitionDemo-Prefix.pch ├── ViewControllers │ ├── CommonViewControllers │ │ ├── CatalogViewController.h │ │ ├── CatalogViewController.m │ │ ├── RootNavigationController.h │ │ └── RootNavigationController.m │ ├── Situation A │ │ ├── FirstSituationViewController.h │ │ └── FirstSituationViewController.m │ ├── Situation B │ │ ├── SecondSituationViewController.h │ │ └── SecondSituationViewController.m │ └── Situation C │ │ ├── ThirdSituationViewController.h │ │ └── ThirdSituationViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── SmoothTransitionDemoTests ├── SmoothTransitionDemoTests-Info.plist ├── SmoothTransitionDemoTests.m └── en.lproj └── InfoPlist.strings /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/README.md -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/project.xcworkspace/xcshareddata/SmoothTransitionDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/project.xcworkspace/xcshareddata/SmoothTransitionDemo.xccheckout -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/project.xcworkspace/xcuserdata/Delpan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/project.xcworkspace/xcuserdata/Delpan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/xcuserdata/Delpan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/xcuserdata/Delpan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/xcuserdata/Delpan.xcuserdatad/xcschemes/SmoothTransitionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/xcuserdata/Delpan.xcuserdatad/xcschemes/SmoothTransitionDemo.xcscheme -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/xcuserdata/Delpan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/xcuserdata/Delpan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/SmoothTransitionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/SmoothTransitionDemo.xcscheme -------------------------------------------------------------------------------- /SmoothTransitionDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SmoothTransitionDemo/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /SmoothTransitionDemo/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /SmoothTransitionDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SmoothTransitionDemo/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/Launch Screen.xib -------------------------------------------------------------------------------- /SmoothTransitionDemo/Resources/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/Resources/left@2x.png -------------------------------------------------------------------------------- /SmoothTransitionDemo/Resources/left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/Resources/left@3x.png -------------------------------------------------------------------------------- /SmoothTransitionDemo/SmoothTransitionDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/SmoothTransitionDemo-Info.plist -------------------------------------------------------------------------------- /SmoothTransitionDemo/SmoothTransitionDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/SmoothTransitionDemo-Prefix.pch -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/CommonViewControllers/CatalogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/CommonViewControllers/CatalogViewController.h -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/CommonViewControllers/CatalogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/CommonViewControllers/CatalogViewController.m -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/CommonViewControllers/RootNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/CommonViewControllers/RootNavigationController.h -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/CommonViewControllers/RootNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/CommonViewControllers/RootNavigationController.m -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/Situation A/FirstSituationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/Situation A/FirstSituationViewController.h -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/Situation A/FirstSituationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/Situation A/FirstSituationViewController.m -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/Situation B/SecondSituationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/Situation B/SecondSituationViewController.h -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/Situation B/SecondSituationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/Situation B/SecondSituationViewController.m -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/Situation C/ThirdSituationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/Situation C/ThirdSituationViewController.h -------------------------------------------------------------------------------- /SmoothTransitionDemo/ViewControllers/Situation C/ThirdSituationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/ViewControllers/Situation C/ThirdSituationViewController.m -------------------------------------------------------------------------------- /SmoothTransitionDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SmoothTransitionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemo/main.m -------------------------------------------------------------------------------- /SmoothTransitionDemoTests/SmoothTransitionDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemoTests/SmoothTransitionDemoTests-Info.plist -------------------------------------------------------------------------------- /SmoothTransitionDemoTests/SmoothTransitionDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IOSDelpan/SmoothTransitionDemo/HEAD/SmoothTransitionDemoTests/SmoothTransitionDemoTests.m -------------------------------------------------------------------------------- /SmoothTransitionDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------