欢迎光临
我们一直在努力

iOS 上 FPS 实时显示器

建站超值云服务器,限时71元/月

iOS 上 FPS 实时显示器

项目介绍:

AYYFPSIndicator

Simple FPS Indicator
FPS = Frames Per Second ,
每秒显示帧数 – 帧率测量单位,详情请参阅 FPS 维基百科

使用方法

请在 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;
}

参阅

iOS-Core-Animation-Advanced-Techniques
YYFPSLabel
WWFPSIndicator

code4app

点此查看使用方法及下载

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » iOS 上 FPS 实时显示器
分享到: 更多 (0)