GithubHelp home page GithubHelp logo

xyxsan / gdperformanceview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dani-gavrilov/gdperformanceview

0.0 1.0 0.0 247 KB

Shows FPS, CPU usage, app and iOS versions above the status bar and report FPS and CPU usage via delegate.

License: MIT License

Ruby 1.87% Objective-C 98.13%

gdperformanceview's Introduction

#GDPerformanceView Shows FPS, CPU usage, app and iOS versions above the status bar and report FPS and CPU usage via delegate.

Pod Version Swift Version Swift Version Plaform License MIT

Alt text Alt text Alt text Alt text

Installation

Simply add GDPerformanceMonitoring folder with files to your project, or use CocoaPods.

Podfile

You can use CocoaPods to install GDPerformanceView by adding it to your Podfile:

platform :ios, '8.0'
use_frameworks!

target 'project_name' do
	pod 'GDPerformanceView', '~> 1.3.1'
end

Don't forget to import GDPerformanceView by adding:

#import <GDPerformanceView/GDPerformanceMonitor.h>

Usage example

Simply start monitoring. Performance view will be added above the status bar automatically. Also, you can configure appearance as you like or just hide the monitoring view and use its delegate.

Start monitoring

Call to start or resume monitoring and show monitoring view.

[[GDPerformanceMonitor sharedInstance] startMonitoring];
self.performanceMonitor = [GDPerformanceMonitor alloc] init];
[self.performanceMonitor startMonitoring];

Stop monitoring

Call when you're done with performance monitoring.

[self.performanceMonitor stopMonitoring];

Call to hide and pause monitoring.

[self.performanceMonitor pauseMonitoring];

Configuration

Call to change appearance.

[self.performanceMonitor configureWithConfiguration:^(UILabel *textLabel) {
	[textLabel setBackgroundColor:[UIColor blackColor]];
	[textLabel setTextColor:[UIColor whiteColor]];
	[textLabel.layer setBorderColor:[[UIColor blackColor] CGColor]];
}];

Call to change output information.

[self.performanceMonitor setAppVersionHidden:YES]
[self.performanceMonitor setDeviceVersionHidden:YES];

Call to hide monitoring view.

[self.performanceMonitor hideMonitoring];

Call to change status bar appearance.

[self.performanceMonitor configureStatusBarAppearanceWithPrefersStatusBarHidden:NO preferredStatusBarStyle:UIStatusBarStyleLightContent];

Start monitoring and configure

[self.performanceMonitor startMonitoringWithConfiguration:^(UILabel *textLabel) {
	[textLabel setBackgroundColor:[UIColor blackColor]];
	[textLabel setTextColor:[UIColor whiteColor]];
	[textLabel.layer setBorderColor:[[UIColor blackColor] CGColor]];
}];

Delegate

Set the delegate and implement its method.

[self.performanceMonitor setDelegate:self];
- (void)performanceMonitorDidReportFPS:(int)fpsValue CPU:(float)cpuValue {
    NSLog(@"%d %f", fpsValue, cpuValue);
}

Requirements

  • iOS 8.0+
  • xCode 8.2+

Meta

Daniil Gavrilov - VK - FB

GDPerformanceView is available under the MIT license. See the LICENSE file for more info.

gdperformanceview's People

Contributors

dani-gavrilov avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.