Is there any way to get class name of parent VC in present (child) UIViewController? My \'child\' VC (push) has two \'parent\'UIViewControllers, so I w
UIViewController
try to pick the child from the children array as following
if let parentVC = self.parent { if let parentVC = parentVC.children[0] as? someViewController {}}