NSTimer in background
问题 I am very new in Iphone Development. I have an issue . I am using a NSTimer which update a UiLabel in every second. now i have two problem : when my app goes in background and after it when i open app . app goes hangs. if i goes next or back on other ui screen then wen i comes on timer screen then my label again shows 0. can anyone help me. code which i am using : timer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target:self selector:@selector(updateCountdown) userInfo:nil repeats: YES]; -