ReplaceRootViewController 1.0.7

ReplaceRootViewController 1.0.7

Maintained by Sushant Verma, Sushant Verma.



  • By
  • sushant verma

ReplaceRootViewController

CI Status Version License Platform

Information

This project demonstrates a fix for http://www.openradar.me/21404408

This issue has been raised by multiple Stackoverflow support pages. This pod aims to make is super easy to replace the root view controller with animations.

You will need to use the console in xcode and debugging tools (eg "debug view hierarchy") to verify that everything is working as expected. UI test is also provided.

Attribution

This pod wouldnt be possible without the following...

Code...

if let window = view.window {
    window.set(rootViewController: yourReplacementViewController)
}

if you want you can also have a callback:..

if let window = view.window {
    window.set(rootViewController: yourReplacementViewController) { (completed) in
        print("Root view replaced!")
    }
}

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

ReplaceRootViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ReplaceRootViewController'

Author

sushant, [email protected]

License

ReplaceRootViewController is available under the MIT license. See the LICENSE file for more info.