Skip to content

RavenKite/RKAPPMonitorView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RKAppMonitorView

Version License Platform

介绍

一个实时监控App的FPS、CPU使用率和内存占用的小工具。

AppMonitorViewDemo

系统要求

此项目最低支持 iOS 7.0

安装

此项目支持 CocoaPods安装。

  1. 在Podfile中添加 pod 'RKAPPMonitorView'
  2. 在终端中执行 pod installpod update
  3. 在项目中 #import <RKAPPMonitorView/RKAPPMonitorView.h>

使用方法

Main Interface 为 Main.stroyboard

keyWindow.rootViewController- (void)viewDidAppear:(BOOL)animated 中添加如下代码:

#ifdef DEBUG
    RKAPPMonitorView *monitorView = [[RKAPPMonitorView alloc] initWithOrigin:CGPointMake(10, 100)];
    [[UIApplication sharedApplication].keyWindow addSubview:monitorView];
#else
#endif

Main Interface 为空

即在AppDelegate中手动创建window。 在AppDelegate中添加如下代码:

#ifdef DEBUG
    RkAPPMonitorView *monitorView = [[RKAPPMonitorView alloc] initWithOrigin:CGPointMake(10, 100)];
    [self.window addSubview:monitorView];
#else
    
#endif

参考

此项目参考了YYFPSLabel的实现。

About

一个实时监控App的FPS、CPU使用率和内存占用的小工具

Resources

License

Stars

Watchers

Forks

Packages

No packages published