├── .gitignore ├── ContainerViewController.swift ├── EmbeddedSwapping.xcodeproj └── project.pbxproj ├── EmbeddedSwapping ├── AppDelegate.h ├── AppDelegate.m ├── ContainerViewController.h ├── ContainerViewController.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── EmbeddedSwapping-Info.plist ├── EmbeddedSwapping-Prefix.pch ├── EmptySegue.h ├── EmptySegue.m ├── FirstViewController.h ├── FirstViewController.m ├── SecondViewController.h ├── SecondViewController.m ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard └── main.m ├── EmptySegue.swift ├── MIT-LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/.gitignore -------------------------------------------------------------------------------- /ContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/ContainerViewController.swift -------------------------------------------------------------------------------- /EmbeddedSwapping.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EmbeddedSwapping/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/AppDelegate.h -------------------------------------------------------------------------------- /EmbeddedSwapping/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/AppDelegate.m -------------------------------------------------------------------------------- /EmbeddedSwapping/ContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/ContainerViewController.h -------------------------------------------------------------------------------- /EmbeddedSwapping/ContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/ContainerViewController.m -------------------------------------------------------------------------------- /EmbeddedSwapping/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/Default-568h@2x.png -------------------------------------------------------------------------------- /EmbeddedSwapping/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/Default.png -------------------------------------------------------------------------------- /EmbeddedSwapping/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/Default@2x.png -------------------------------------------------------------------------------- /EmbeddedSwapping/EmbeddedSwapping-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/EmbeddedSwapping-Info.plist -------------------------------------------------------------------------------- /EmbeddedSwapping/EmbeddedSwapping-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/EmbeddedSwapping-Prefix.pch -------------------------------------------------------------------------------- /EmbeddedSwapping/EmptySegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/EmptySegue.h -------------------------------------------------------------------------------- /EmbeddedSwapping/EmptySegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/EmptySegue.m -------------------------------------------------------------------------------- /EmbeddedSwapping/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/FirstViewController.h -------------------------------------------------------------------------------- /EmbeddedSwapping/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/FirstViewController.m -------------------------------------------------------------------------------- /EmbeddedSwapping/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/SecondViewController.h -------------------------------------------------------------------------------- /EmbeddedSwapping/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/SecondViewController.m -------------------------------------------------------------------------------- /EmbeddedSwapping/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/ViewController.h -------------------------------------------------------------------------------- /EmbeddedSwapping/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/ViewController.m -------------------------------------------------------------------------------- /EmbeddedSwapping/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /EmbeddedSwapping/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /EmbeddedSwapping/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmbeddedSwapping/main.m -------------------------------------------------------------------------------- /EmptySegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/EmptySegue.swift -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mluton/EmbeddedSwapping/HEAD/README.md --------------------------------------------------------------------------------