I have a viewcontroller with required init?(coder aDecoder: NSCoder) , i want to create instance in other class. here is my code
class ViewControllerB: UIViewController { @IBOutlet weak var tableview: UITableView! required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) }}
I want to create instance for ViewControllerB in ViewControllerA.