EXC_BREAKPOINT UNKNOWN crash on line "0" EXC_BREAKPOINT UNKNOWN crash on line "0" swift swift

EXC_BREAKPOINT UNKNOWN crash on line "0"


This normally happens when you are unwrapping an optional and it's value is nil. Try putting a nil check to navigationController.

if let navigationcontroller: UINavigationController = navigationController {     navigationcontroller.pushViewController(vc, animated: true) }