I have to call a function call myfunc after a specific interval of time in my app and this func runs forever.However ,the problem is whenever I use the following code my iphone sound goes away.
self.now = [NSDate date] ;
self.timer = [[NSTimer alloc] initWithFireDate:self.now
interval:100
target:self
selector:@selector(myfunc)
userInfo:nil
repeats:YES] ;
self.runLoop = [NSRunLoop currentRunLoop];
[runLoop addTimer:self.timer forMode:NSDefaultRunLoopMode];
[self.runLoop runUntilDate:[NSDate dateWithTimeIntervalSinceNow:10000]];
Only the ringtone sound works.All other sound stops working.Like the keypad lock sound and the volume bars which let you adjust your iphone volume also go away.Please tell me what I am doing wrong which damages the iphone sound.
I am pretty sure this is the piece of code that stops iphone sound.When I comment it the sound starts working. Does anybody know a solution to this method? If not ,does anybody know of another method to perform the same functionality?

