All Projects → roronoaxyz → WMDebugAssistant

roronoaxyz / WMDebugAssistant

Licence: MIT license
CPU 内存(Memory)Network FPS 实时监测 查看沙盒sandbox

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to WMDebugAssistant

Lldebugtool
LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.
Stars: ✭ 673 (+1194.23%)
Mutual labels:  cpu, fps
nativescript-performance-monitor
⚡ Proof your app maintains 60-ish FPS by collecting data or showing it on screen with this NativeScript plugin!
Stars: ✭ 21 (-59.62%)
Mutual labels:  cpu, fps
Debugoverlay Android
Android library to display various debugging information in an overlay window
Stars: ✭ 98 (+88.46%)
Mutual labels:  cpu, fps
Mobileperf
Android performance test
Stars: ✭ 286 (+450%)
Mutual labels:  cpu, fps
Walle
iOS Application performance monitoring
Stars: ✭ 19 (-63.46%)
Mutual labels:  cpu, fps
Lldebugtoolswift
LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.
Stars: ✭ 40 (-23.08%)
Mutual labels:  cpu, fps
Ios Monitor Platform
📚 iOS 性能监控 SDK —— Wedjat(华狄特)开发过程的调研和整理
Stars: ✭ 2,316 (+4353.85%)
Mutual labels:  cpu, fps
ccpu
A 8-bit computer made of 74xx series logic gates and memory ICs.
Stars: ✭ 31 (-40.38%)
Mutual labels:  cpu
Protobuf-Dreamer
A tiled DeepDream project for creating any size of image, on both CPU and GPU
Stars: ✭ 39 (-25%)
Mutual labels:  cpu
potd
A high scalable low to medium interactive SSH/TCP honeypot using Linux Namespaces, capabilities, seccomp, cgroups designed for OpenWrt and IoT devices.
Stars: ✭ 28 (-46.15%)
Mutual labels:  sandbox
yagol
Yagol is a Conway's Game of Life sandbox game made with react. Customize the different options then create, share and watch your shapes evolve.
Stars: ✭ 31 (-40.38%)
Mutual labels:  sandbox
go-echo-server-sandbox
A scaffold of golang web server using labstack/echo
Stars: ✭ 12 (-76.92%)
Mutual labels:  sandbox
CSCvon8
A crazy small 8-bit CPU built with only seventeen 7400-series chips.
Stars: ✭ 86 (+65.38%)
Mutual labels:  cpu
cpuwhat
Nim utilities for advanced CPU operations: CPU identification, ISA extension detection, bindings to assorted intrinsics
Stars: ✭ 25 (-51.92%)
Mutual labels:  cpu
Kosm-Classic-FPS-Template-UE4
Classic Arena First-Person-Shooter Mechanics for Unreal Engine 4.
Stars: ✭ 38 (-26.92%)
Mutual labels:  fps
memscrimper
Code for the DIMVA 2018 paper: "MemScrimper: Time- and Space-Efficient Storage of Malware Sandbox Memory Dumps"
Stars: ✭ 25 (-51.92%)
Mutual labels:  sandbox
rasterator
Real-time software rasterizer written in C++ with windowing and model loading support.
Stars: ✭ 15 (-71.15%)
Mutual labels:  cpu
CuVec
Unifying Python/C++/CUDA memory: Python buffered array ↔️ `std::vector` ↔️ CUDA managed memory
Stars: ✭ 73 (+40.38%)
Mutual labels:  cpu
stress
Single-purpose tools to stress resources
Stars: ✭ 24 (-53.85%)
Mutual labels:  cpu
noder
Simple, ephemeral docker-based NodeJS sandbox
Stars: ✭ 16 (-69.23%)
Mutual labels:  sandbox

WMDebugAssistant

image

作用

   在自己的应用中,实时监测CPU,内存,网络下载,fps的状态,帮助开发定位。    等于XCode 调试时候的 debeg 功能,但是能在发布时候使用。    有效定位 手机发烫,内存泄露,浪费流量,界面卡顿等问题。

image

pod使用

pod 'WMDebugAssistant' ,:git=>"https://github.com/roronoaxyz/WMDebugAssistant.git", :tag => '0.1.2'

悬浮球 添加在第一个界面生成后  因为它本身是个 UIWindow

iOS代码

@property (strong, nonatomic) WMAssistantBall *assistantBall;

self.assistantBall = [[WMAssistantBall alloc] init];//一定要作为一个局部属性
self.assistantBall.addtionItems = @[@"暗门", @"接口数", @"网络", @"日志"];     //额外加一些按钮
self.assistantBall.ballColor = [UIColor blueColor];       //按钮颜色
self.assistantBall.shapeColor = [UIColor redColor];           //移动时的光圈颜色
[self.assistantBall doWork];              //很重要 一定要调用

//点击了某一个选项
self.assistantBall.selectBlock = ^(NSString *title, UIButton *button) {
    NSLog(@"%@", title);
};

   //历史数据曲线图    [self.assistantBall makeChart:1 pCtrl:self];

Author

Thomas, [email protected]

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].