├── LICENSE ├── Podfile ├── README.md ├── SwifRootViewController.podspec ├── SwifRootViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── mihael.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SwifRootViewController └── SwifRootViewController.swift └── SwifRootViewControllerTests ├── Info.plist └── SwifRootViewControllerTests.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/README.md -------------------------------------------------------------------------------- /SwifRootViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewController.podspec -------------------------------------------------------------------------------- /SwifRootViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwifRootViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwifRootViewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwifRootViewController.xcodeproj/xcuserdata/mihael.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewController.xcodeproj/xcuserdata/mihael.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwifRootViewController/SwifRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewController/SwifRootViewController.swift -------------------------------------------------------------------------------- /SwifRootViewControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewControllerTests/Info.plist -------------------------------------------------------------------------------- /SwifRootViewControllerTests/SwifRootViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihaelIsaev/SwifRootViewController/HEAD/SwifRootViewControllerTests/SwifRootViewControllerTests.swift --------------------------------------------------------------------------------