文件名称:AYYFPSIndicator简单的FPS指示
文件大小:2.52MB
文件格式:ZIP
更新时间:2024-04-26 06:02:06
IOS源码
作者cheenbee,代码AYYFPSIndicator。 AYYFPSIndicator是简单的FPS指标,Simple FPS Indicator FPS = Frames Per Second , 每秒显示帧数 - 帧率测量单位。 使用方法 请在 DEBUG 模式下使用 FPS 监控 1. 默认位置显示 FPS 值 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. #ifdef DEBUG // 1. 默认位置开启 FPS 监听,可拖动 [[AYYFPSIndicator sharedInstance] start]; #endif return YES; } 2. statusBar 显示 FPS值 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. #ifdef DEBUG // 2. 在 statusBar 显示 FPS [[AYYFPSIndicator sharedInstance] start]; [AYYFPSIndicator sharedInstance].indicatorPosition = AYYFPSIndicatorPositionStatusBar; #endif return YES; }
【文件预览】:
AYYFPSIndicator-master
----LICENSE(1KB)
----AYYFPSIndicatorDemo()
--------AYYFPSIndicatorDemo()
--------AYYFPSIndicatorDemo.xcodeproj()
----FPSDemo1.gif(680KB)
----.gitignore(1KB)
----README.md(1KB)
----FPSDemo2.jpg(673KB)
----AYYFPSIndicator()
--------AYYFPSIndicator.m(8KB)
--------AYYFPSIndicator.h(727B)