RRFPSBar把 iOS 状态栏改为显示 FPS
该程序可以把 iOS 状态栏改为显示 FPS 。
使用方法
// Include only if app is is not optimized (aka debug build) #ifndef __OPTIMIZE__ #import "RRFPSBar.h" #endif @implementation YourAppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Show only if app is is not optimized (aka debug build) #ifndef __OPTIMIZE__ [[RRFPSBar sharedInstance] setHidden:NO]; #endif } @end
评论