OttoFPSButton
前言
在項目開發(fā)中赃泡,有的時候需要查看實時的FPS
值,以此作為性能的參考瞬痘。
優(yōu)勢
- 實時顯示FPS值。
- 可以拖到任意位置貼邊烤镐,不影響調(diào)試。
效果圖
使用
將OttoFPSButton目錄拖到目標工程下职车,在AppDelegate.m
里面加入下面代碼
#import "OttoFPSButton.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
[self.window makeKeyAndVisible];
CGRect frame = CGRectMake(0, 300, 80, 30);
UIColor *btnBGColor = [UIColor colorWithWhite:0.000 alpha:0.700];
OttoFPSButton *btn = [OttoFPSButton setTouchWithFrame:frame titleFont:[UIFont systemFontOfSize:15] backgroundColor:btnBGColor backgroundImage:nil];
[self.window addSubview:btn];
return YES;
}
這樣就能在項目中看到FPS
的狀態(tài)變化了。