iphone - how to get back in navigation view using timer -


hi using code 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 happened directly quit application , displays icon how can resolve

remove comma function name because if not passing argument timer no need comma , if passing argument use uersinfo @ function


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -