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.
- Do Apple disqualify apps on something like that? (just a general question)
- 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
