Hi frends my problem is as under:
timer1 = [NSTimer scheduledTimerWithTimeInterval:1.0/5 target:self
selector:@selector(Loop1) userInfo:nil repeats:YES];
timer2 = [NSTimer scheduledTimerWithTimeInterval:1.0/5 target:self
selector:@selector(Loop2) userInfo:nil repeats:YES];
timer3 = [NSTimer scheduledTimerWithTimeInterval:1.0/20 target:self
selector:@selector(Loop3) userInfo:nil repeats:YES];
timer4 = [NSTimer scheduledTimerWithTimeInterval:1.0/10 target:self
selector:@selector(Loop4) userInfo:nil repeats:YES];
timer5 = [NSTimer scheduledTimerWithTimeInterval:1.0/5 target:self
selector:@selector(Loop5) userInfo:nil repeats:YES];
I have used these 5 timers to move frames on iphone. But timer3 and timer4 behaves differently on ipod and simulator. timer3 and timer4 are slower on ipod than what i want to implement. and works fine on simulator.
please suggest me where is the problem.
Thanx.