vote up 1 vote down star

I am new to iphone development. I used NSTimer scheduledTimerWithTimeInterval 0.01 seconds for game loop. The game consists drawscreen function inwhich I use CGContextClipToRect to clip the large images for animation. But the speed 0.01 seconds is working in simulator only not in the iphone(device). How can i overcome this problem? I respect your reply......you have told about it in previous post. But i could not understand..... the timer code is in view controller as

(void)viewDidLoad {
    GameView *main = [[GameView alloc] 
    initWithFrame:[[UIScreen mainScreen] applicationFrame]]; 
    main.backgroundColor = [UIColor blackColor]; 
    self.view = main; 
    [main release];    
    self.tim = [NSTimer scheduledTimerWithTimeInterval: 0.01         
    target: self selector: @selector (gameloop:) userInfo: nil repeats: YES]; 
    [super viewDidLoad];
}

Anyone can help me?

flag
1  
100 updates per second is probably a bit optimistic. – U62 May 28 at 12:28
For one thing, what U62 said; try 1.0/30.0 instead. Moreover: Be more specific. You say it's “not working” on the device, but what do you mean by “not working”? – Peter Hosey May 28 at 15:13

3 Answers

vote up 1 vote down

NSTimer is the wrong tool for this job. It's not meant to be a real-time timer. It has no guarantees on when it will fire, and you can miss frames easily.

There are a lot of good recommendations for how to develop this kind of program on this thread. Note particularly the references to Apple's sample code.

link|flag
vote up 0 vote down

As U62 said, 100fps is not a realistic expectation, try running it at 30, maybe 60 updates a second and see how it runs. Also if your writing a game that need to run at a high frame rate you should look into writing it in OpenGL.

One option may be to process logic every tick, but only draw to the screen every few ticks.

link|flag
vote up 0 vote down

i mean ,for example when i animate frames ,frames are shown in correct speed in simulator. but in device it shows very slow(FPS)in other words a boy runs fastly in simulator.but in device he walks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.