LLDebugTool icon indicating copy to clipboard operation
LLDebugTool copied to clipboard

LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.

Results 23 LLDebugTool issues
Sort by recently updated
recently updated
newest added

我的podfild如下 pod 'LLDebugToolSwift' ,:configurations => ['Debug'] 我的AppDelegate import LLDebugToolSwift 并在 didFinishLaunchingWithOptions 方法里加了 LLDebugTool.shared().startWorking() 我断点是可以进入到startWorking该方法的,说明我集成的应该没问题吧? 但是app界面没有显示入口的地方

## 我希望在小圆点点击后的 一级功能列表页面 添加入口,如下图。 我没有找到原生方法,我看了下 原代码,使用runtime 方法做到了。如下描述。 ## 1 of 3 使用运行时,为 LLConfig 增加额外的 属性 ```c typedef void(^LLConfigFunctionListDidLoad)(UIViewController *); @interface LLConfig (customAdd) @property (nonatomic, copy) LLConfigFunctionListDidLoad flDidloadBlock; @end static char...