IOS7, Segue and storyboards – How to create without a button?
Delete the current segue. Attach the segue from the origin view controller to the destination (and then name it). Now, your button press method should look something like this: Objective-C: – (IBAction)validateLogin:(id)sender { // validate login if (validLogin) { [self performSegueWithIdentifier:@”mySegue” sender:sender]; } } Swift: @IBAction func validateLogin(sender: UIButton) { // validate login if validLogin … Read more