How to release my view from stack ?
- by aman-gupta
Hi,
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