In my application I m using following coding convention to open my default screen :–
AppDelegate *ptrDefaultScreen = (AppDelegate *)[[UIApplication sharedApplication]delegate];
[self.navigationController presentModalViewController:ptrDefaultScreen.FrmFlashScreenLink animated:YES];
but when I move to other screen after default screen ,my default screen is still exists even i used [self dismissModelViewController:YES]; to dimiss default screen from view.
where I m wrong I want my default screen will be completely removed from view.
Is any other way to call default screen before actual application.
Please help me out.Thanks in advance
The approach I use here is to make my default screen a subview of my main view. When I am done with it I either hide it, or removeFromSuperview it depending on memory constraints.