performSegue(withIdentifier: "m1", sender: self) The code above is correct here below but it's giving me a SIGBRT (*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Receiver () has no segue with identifier 'm1'') error claiming the receiver login has no segue with identifier 'm1'' even the login is segued correctly to the UITabBarController with the correct identifier. Forgive me, i'm a beginner developer.
self.performSegue(withIdentifier: "m1", sender: self)
– Bryan