I want to create a UIViewController
programmatically without the use of a nib or a storyboard.
I thought it would be enough to implement the UIViewController
as:
class TestViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
//Add some setup code here, without it it should just be blank
}
}
instantiate it with let vc = TestViewController(nibName: nil, bundle: nil)
or just TestViewController()
and then just push it:
navigationController?.pushViewController(vc, animated: true)
But it shows the navigationController
(upper bar) with a transparent View (the UIWindow
behind is being shown, I have a multi-window setup)
You can do something like,
hope this will help :)
You'll need to setup your views in the
loadView
method ofUIViewController
and assign your root view to theview
property.See https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/#//apple_ref/occ/instm/UIViewController/loadView for additional details.
According to the docs:
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/#//apple_ref/occ/instp/UIViewController/view
If you do not provide a nib file when instantiating the view controller, UIViewController calls it's
loadView()
method which creates a plain UIView object and assigns it to its view property.The reason why you are seeing a transparent view is because the UIView object has no background color. To verify this, you can set the background color of the view controller's view property right before you push it on your navigation stack.