I want to find out the frame rate of my iOS app, i'm wondering how to check that?
Try to profile your app with Instruments and use the Core Animation instrument. IIRC it should give frame rate.
Try to use SpriteKit's SKView!
SKView *skView = [[SKView alloc] init];
skView.frame = CGRectMake(240, 525, 60, 15);
skView.showsFPS = YES;
[self.view addSubview:skView];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With