LLDebugTool是一款針對開發者和測試者的調試工具,它能夠幫助你在非Xcode的狀況下,進行數據分析和操做。ios
爲您的下一個項目選擇LLDebugTool,或者遷移到您現有的項目中——您會爲此感到驚喜!git
在 LLConfig
中增長了一個options LLConfigAvailableFeature
用於控制是否啓用LLDebugTool
中的某個功能模塊,如今你能夠動態的啓動/中止某個模塊。更多的修改內容能夠查看Version 1.1.5 Project。github
LLConfig
中增長了一個options LLConfigAvailableFeature
用於控制是否啓用LLDebugTool
中的某個功能模塊,如今你能夠動態的啓動/中止某個模塊。LLConfigLogStyle
增長2個枚舉值,LLConfigLogFileFuncDesc
and LLConfigLogFileDesc
。LLAppHelper
和 LLConfig
,整理代碼。LLConfig
,如今你能夠在運行中動態的修改 colorStyle
and windowStyle
,更多效果能夠查看demo。LLSubTitleTableViewCell
解決UITextView在ios 8版本下的bug。檢查網絡請求或者查看某些事件的日誌信息,而沒必要非在XCode運行下運行。這在解決測試人員的問題上頗有用。bash
更輕鬆的篩選有用的信息。網絡
更輕鬆的處理偶發的問題。app
更輕鬆的分析崩潰緣由。框架
更輕鬆的分享、預覽或刪除沙盒文件,這在開發階段很是有用。工具
更輕鬆的觀察App的CPU,內存,FPS等信息。學習
CocoaPods 是集成LLDebugTool
的首選方式。測試
pod 'LLDebugTool'
到你的Podfile裏。若是隻想在Debug模式下使用,則添加pod 'LLDebugTool' ,:configurations => ['Debug']
到你的Podfile裏,詳細的配置方式能夠查看Wiki/如何僅在Debug環境中使用。pod install
來進行集成。搜索不到LLDebugTool
時,可先運行pod repo update
,再執行pod install
。#import "LLDebug.h"
,或者直接在pch文件中添加#import "LLDebug.h"
。Carthage 是一個分散的依賴管理器,它構建您的依賴併爲您提供framework框架。
github "LLDebugTool"
複製代碼
carthage
來構建框架,並將構建的「LLDebugTool.framework」拖到Xcode項目中。您能夠直接將名爲LLDebugTool文件夾的源文件添加到項目中。
#import "LLDebug.h"
,或者直接在pch文件中添加#import "LLDebug.h"
。你須要在"application:(UIApplication * )application didFinishLaunchingWithOptions:(NSDictionary * )launchOptions"中啓動LLDebugTool,不然你可能會丟掉某些信息。
若是你想自定義一些參數,你須要在調用"startWorking"前配置這些參數。更詳細的配置信息請看LLConfig.h。
快速啓動
#import "AppDelegate.h"
#import "LLDebug.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// The default color configuration is green background and white text color.
// Start working.
[[LLDebugTool sharedTool] startWorking];
// Write your project code here.
return YES;
}
複製代碼
使用自定義的配置啓動
#import "AppDelegate.h"
#import "LLDebug.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// The default color configuration is LLConfigColorStyleHack.
// If you want to use other color configurations, you can use the following line.
[LLConfig sharedConfig].colorStyle = LLConfigColorStyleSimple;
// If you want to use a custom color configuration, you can use the following line.
[[LLConfig sharedConfig] configBackgroundColor:[UIColor orangeColor] textColor:[UIColor whiteColor] statusBarStyle:UIStatusBarStyleDefault];
// If you don't want to use color configuration, you can use the following line. [LLConfig sharedConfig].useSystemColor = YES; // Start working. [[LLDebugTool sharedTool] startWorking]; // Write your project code here. return YES; } 複製代碼
打印和保存一個日誌。 更多的log宏信息查看LLLogHelper.h。
保存日誌
#import "LLDebug.h"
- (void)testNormalLog {
// Insert an LLog where you want to print.
LLog(@"Message you want to save or print.");
}
複製代碼
Save Log with event and level
#import "LLDebug.h"
- (void)test
- (void)testEventErrorLog {
// Insert an LLog_Error_Event where you want to print an event and level log.
LLog_Error_Event(@"The event that you want to mark. such as bugA, taskB or processC.",@"Message you want to save or print.");
}
複製代碼
你不須要作任何操做,只須要調用了"startWorking"就能夠監控大部分的網絡請求,包括使用NSURLSession,NSURLConnection和AFNetworking。若是你發現某些狀況下沒法監控網絡請求,請打開一個issue來告訴我。
你不須要作任何操做,只須要調用"startWorking"就能夠截獲崩潰,保存崩潰信息、緣由和堆棧信息,而且也會同時保存當次網絡請求和日誌信息。
LLDebugTool會監控app的CPU,內存和FPS。你能夠更便捷的查看app的各類信息。
LLDebugTool提供了一個快捷的方式來查看和操做沙盒文件,你能夠更輕鬆的刪除沙盒中的文件/文件夾,或者經過airdrop來分享文件/文件夾。只要是apple支持的文件格式,你能夠直接經過LLDebugTool來預覽。
LLDebugTool在支持ios8+,而且須要使用ARC模式。使用到的框架已經包含在大多數Xcode模板中:
UIKit
Foundation
SystemConfiguration
Photos
malloc
mach-o
mach
QuickLook
objc
sys
LLDebug.h
公用頭文件.
LLConfig
配置文件。
用於自定義顏色、大小、標識和其餘信息。若是您想要配置任何東西,您須要關注這個文件。
LLDebugTool
工具文件。
用於啓動和中止LLDebugTool,你須要看一下"LLDebugTool.h"這個文件。
Helper
輔助文件。
若是你對功能的實現原理不感興趣,那麼能夠忽略這個文件夾。
LLAppHelper
用於監視應用程序的各類屬性。LLCrashHelper
用於當App發生崩潰時,收集崩潰信息。LLLogHelper
快速打印和保存日誌。LLNetworkHelper
用於監視網絡請求。LLSandboxHelper
Sandbox Helper。用於查看和操做沙盒文件。LLStorageManager
Storage Helper。用於數據存儲和讀取。UserInterface
UI文件。
若是你想要修改、查看或者學習UI方面的東西,你能夠查看一下這個文件夾。
Base
父類文件Categories
類擴展Others
不通用的控件Resources
圖片資源Sections
視圖控制器Tool
工具能夠在 CHANGELOG 中找到每一個LLDebugTool版本的簡要總結。