├── .gitignore ├── README.md ├── SwitchViewController.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SwitchViewController ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ContainerViewController.h ├── ContainerViewController.m ├── FirstViewController.h ├── FirstViewController.m ├── Info.plist ├── SecondViewController.h ├── SecondViewController.m ├── ViewController.h ├── ViewController.m └── main.m ├── SwitchViewControllerTests ├── Info.plist └── SwitchViewControllerTests.m └── SwitchViewControllerUITests ├── Info.plist └── SwitchViewControllerUITests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/README.md -------------------------------------------------------------------------------- /SwitchViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwitchViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwitchViewController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/AppDelegate.h -------------------------------------------------------------------------------- /SwitchViewController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/AppDelegate.m -------------------------------------------------------------------------------- /SwitchViewController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwitchViewController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwitchViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwitchViewController/ContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/ContainerViewController.h -------------------------------------------------------------------------------- /SwitchViewController/ContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/ContainerViewController.m -------------------------------------------------------------------------------- /SwitchViewController/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/FirstViewController.h -------------------------------------------------------------------------------- /SwitchViewController/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/FirstViewController.m -------------------------------------------------------------------------------- /SwitchViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/Info.plist -------------------------------------------------------------------------------- /SwitchViewController/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/SecondViewController.h -------------------------------------------------------------------------------- /SwitchViewController/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/SecondViewController.m -------------------------------------------------------------------------------- /SwitchViewController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/ViewController.h -------------------------------------------------------------------------------- /SwitchViewController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/ViewController.m -------------------------------------------------------------------------------- /SwitchViewController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewController/main.m -------------------------------------------------------------------------------- /SwitchViewControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewControllerTests/Info.plist -------------------------------------------------------------------------------- /SwitchViewControllerTests/SwitchViewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewControllerTests/SwitchViewControllerTests.m -------------------------------------------------------------------------------- /SwitchViewControllerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewControllerUITests/Info.plist -------------------------------------------------------------------------------- /SwitchViewControllerUITests/SwitchViewControllerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaoyuanng/SwitchViewController/HEAD/SwitchViewControllerUITests/SwitchViewControllerUITests.m --------------------------------------------------------------------------------