How to release my view from stack ?
        Posted  
        
            by aman-gupta
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by aman-gupta
        
        
        
        Published on 2010-05-17T12:54:41Z
        Indexed on 
            2010/05/17
            13:00 UTC
        
        
        Read the original article
        Hit count: 172
        
iphone
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
© Stack Overflow or respective owner