hi i am using this code for getting previous view
NSTimer *theTimer = [NSTimer scheduledTimerWithTimeInterval:3.0
target:self
selector:@selector(pictureTimerFired:)
userInfo:nil
repeats:NO];
- (void) pictureTimerFired:(NSTimer*)theTimer {
NSLog(@"Timer fired, closing picture");
}
but what happened is it directly quit from application and displays icon how can i resolve this