Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

viewcontroller.m

[self performSegueWithIdentifier:@"FirstDetailsSegue" sender:self];
[self performSegueWithIdentifier:@"SecondDetailsSegue" sender:self];}

FirstDetailsSegue --> viewcontroller2.m:

- (IBAction)startAddingIng:(UIButton *)sender {
    [[self presentingViewController] 
    dismissViewControllerAnimated:YES completion:nil];
}

so my code goes to viewcontroller2.m, finishes there and coming back to viewcontroller.m.

This is what causing the error in the topic. It's not really an error, not even a warning, just a comment in the console.

  1. Do Apple disqualify apps on something like that? (just a general question)
  2. How can I solve it ?

Update: Ok so after debugging it a bit I can see that the segues are called one after the other. (on top of each other?) I thought that after the first one is called the class waits for it to finish and then calls the other segue. Still need a solution though.

Update 2:

VC1 is connected by model to VC2. VC1 is conected by push to VC3. Right now I'm in VC2, I want to move to VC3 (without seeing VC2) and still have a back button in VC3 to VC1

enter image description here

share|improve this question

closed as not a real question by Jean-François Corbett, Midhun MP, César Bustíos, Rory McCrossan, Andy Hayden Dec 13 '12 at 15:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Move [self performSegueWithIdentifier:@"SecondDetailsSegue" sender:self];} to the viewDidAppear method of viewcontroller2.m

share|improve this answer
Viewcontroller2.m doesn't have that segue. VC1 is connected to VC2 with model and to VC3 with push. I want to go to VC3 from VC2 but I want the push = navigation controller back SO in the code above I did something like VC1->VC2->VC1->VC3. I hope that's understood – EXEC_BAD_ACCESS Dec 13 '12 at 13:10
I'm a little bit confused. I think you need to share more code from your VCs. – Hesham Abd-Elmegid Dec 13 '12 at 14:18
I don't think my code will help that much. I added some more explanations and a picture to the first post. – EXEC_BAD_ACCESS Dec 13 '12 at 14:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.