├── .gitignore ├── README.markdown ├── TPMultiLayoutViewController.h ├── TPMultiLayoutViewController.m ├── TPMultiLayoutViewControllerTest.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── TPMultiLayoutViewControllerTest ├── TPMultiLayoutViewControllerTest-Info.plist ├── TPMultiLayoutViewControllerTest-Prefix.pch ├── TPMultiLayoutViewControllerTestAppDelegate.h ├── TPMultiLayoutViewControllerTestAppDelegate.m ├── TPMultiLayoutViewControllerTestViewController.h ├── TPMultiLayoutViewControllerTestViewController.m ├── en.lproj ├── InfoPlist.strings ├── MainWindow.xib └── TPMultiLayoutViewControllerTestViewController.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/README.markdown -------------------------------------------------------------------------------- /TPMultiLayoutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewController.h -------------------------------------------------------------------------------- /TPMultiLayoutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewController.m -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTest-Info.plist -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTest-Prefix.pch -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestAppDelegate.h -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestAppDelegate.m -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestViewController.h -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/TPMultiLayoutViewControllerTestViewController.m -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/en.lproj/TPMultiLayoutViewControllerTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/en.lproj/TPMultiLayoutViewControllerTestViewController.xib -------------------------------------------------------------------------------- /TPMultiLayoutViewControllerTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/TPMultiLayoutViewController/HEAD/TPMultiLayoutViewControllerTest/main.m --------------------------------------------------------------------------------