Popularity
3.4
Declining
Activity
0.0
Stable
173
16
15

Code Quality Rank: L5
Programming language: Objective-C
License: MIT License
Tags: Code Quality    

Stats alternatives and similar libraries

Based on the "Code Quality" category.
Alternatively, view Stats alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Stats or a related project?

Add another 'Code Quality' Library

README

What's Stats

Stats displays load statuses such as the memory usage, the CPU load, and the number of subviews in-app, and in realtime.

How to use

Just add on your view!

  1. Add Stats.h, Stats.m to your project
  2. As with UILabel, add wherever you like.
self.stats = [[Stats alloc] initWithFrame:CGRectMake(20, 40, 100.0, 60.0)];
[self.window addSubview:self.stats];

Parameters and the units

[](README_images/stats_up.png)

From top to bottom,

  • The variation of memory usage [kB]
  • The total memory usage [kB]
  • The variation of CPU time [msec]
  • The number of UIView subclasses

Demo

A full Xcode demo project is included in the "StatsDemo" directory.

Articles