Segues?

Hello all:


I have an app that starts with a screen with 2 buttons, and depending on which button is tapped the user is taken to a series of input screens. I did the first segues using a Modal triggered action, and then after that using Swipes for the "next page". So like this:


Screen 1 Tap Button --->> Screen 2 Swipe--->>Screen 3 Swipe --->> Screen 4

etc.


However when the user taps the top of any screen, the app jumps back to screen 1, and I get an error:


clientIdentifier for interfaceControllerID:77F000B not found


Can anyone suggest what is going wrong?


Thanks in advance.

Hi,

I have a big problem, I made a very heavy application with multiple images, my problem is that the application will automatically crash after a number of open UIPageController.

I made the different link ( segue ) via the Storyboard but I am unable to empty the stack UIPageController open and empty the cache.

ps: I can not use the default of a UINavigationController not meet the specifications . Have you an idea on how to clear a stack and thus to have no problem (memory warning )

thank you Regards,

Bilel

Some code

- (IBAction)btns1:(id)sender {
    NSLog(@"btnS1");
    Chapter1Controller *chapter1 = [[Chapter1Controller alloc]initWithNibName:@"Chapter1Controller" bundle:nil];
    UIStoryboardSegue *chapter1sm1 = [[UIStoryboardSegue alloc] initWithIdentifier:@"chapter1sm1" source:self destination:chapter1];
    [self performSegueWithIdentifier:@"chapter1sm1" sender:self];
}

This is not directly related to the OP's problem. Please start your own thread.

Make sure that the identifier that you have used is in code is the same as the ones specified in the storyboard. Sometimes a typo is the cause of this problem.

Segues?
 
 
Q