I want to know the frame rate of my iOS application, I wonder how to check it?
Try profiling the application with tools and use the Core Animation tool. IIRC he must provide the frame rate.
Try using SpriteKit SKView!
SKView *skView = [[SKView alloc] init]; skView.frame = CGRectMake(240, 525, 60, 15); skView.showsFPS = YES; [self.view addSubview:skView];
You can count frames created by you after each stage of rendering and take the time between them. Therefore, you can write them to your application if you want to show the frame rate at runtime.
Source: https://habr.com/ru/post/912949/More articles:BPM vs ESB - orchestration? - soaSpecial characters in the Amazon S3 filename - amazon-s3Convert Java console program to Webapp - javaCrawling a website, getting links, scanning links using PHP and XPATH - phpA simple simple Excel formula for working with filtered results only - filter"GC upper limit exceeded" on Hadoop.20 datanode - garbage-collectionFunctors in separate files in OCaml? - functorHadoop GC Overflow Streaming - out-of-memoryRedis username or identifier for keys - redisCan I abort the Count Rows operation in SQL Developer? - oracle-sqldeveloperAll Articles