├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LLDebugToolSwift.podspec ├── LLDebugToolSwift └── LLog.swift ├── LLDebugToolSwiftDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── LLDebugToolSwiftDemo.xcscheme ├── LLDebugToolSwiftDemo.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LLDebugToolSwiftDemo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-20@1x.png │ │ ├── icon-20@2x-1.png │ │ ├── icon-20@2x.png │ │ ├── icon-20@3x.png │ │ ├── icon-29@1x.png │ │ ├── icon-29@2x-1.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40@1x.png │ │ ├── icon-40@2x-1.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-76@1x.png │ │ ├── icon-76@2x.png │ │ └── icon-83.5@2x.png │ ├── Contents.json │ ├── crash-1.imageset │ │ ├── Contents.json │ │ └── crash-1.jpg │ └── crash-2.imageset │ │ ├── Contents.json │ │ └── crash-2.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DemoViewControllers │ ├── BaseTestViewController.swift │ ├── CustomWebViewController.swift │ ├── TestColorStyleViewController.swift │ ├── TestCrashViewController.swift │ ├── TestHierarchyViewController.swift │ ├── TestHtmlViewController.swift │ ├── TestLocationViewController.swift │ ├── TestLogViewController.swift │ ├── TestNetworkViewController.swift │ ├── TestShortCutViewController.swift │ └── TestWindowStyleViewController.swift ├── Info.plist ├── MyService.swift ├── Resource │ ├── LLDebugTool.gif │ ├── LLDebugTool.html │ ├── LLDebugTool.jpg │ ├── LLDebugTool.json │ ├── LLDebugTool.md │ ├── LLDebugTool.mp3 │ ├── LLDebugTool.mp4 │ ├── LLDebugTool.pdf │ ├── LLDebugTool.plist │ ├── LLDebugTool.png │ └── LLDebugTool.txt ├── ViewController.swift ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings └── zh-Hans.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ └── Main.strings ├── LLDebugToolSwiftDemoTests ├── Info.plist └── LLDebugToolSwiftDemoTests.swift ├── LLDebugToolSwiftDemoUITests ├── Info.plist └── LLDebugToolSwiftDemoUITests.swift ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── LLDebugTool │ ├── LICENSE │ ├── LLDebugTool │ │ ├── Core │ │ │ ├── Component │ │ │ │ ├── AppInfo │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLAppInfoHelper.h │ │ │ │ │ │ ├── LLAppInfoHelper.m │ │ │ │ │ │ └── UIDevice │ │ │ │ │ │ │ ├── UIDevice+LL_AppInfo.h │ │ │ │ │ │ │ └── UIDevice+LL_AppInfo.m │ │ │ │ │ ├── LLAppInfo.h │ │ │ │ │ ├── LLAppInfoComponent.h │ │ │ │ │ ├── LLAppInfoComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLAppInfoViewController.h │ │ │ │ │ │ ├── LLAppInfoViewController.m │ │ │ │ │ │ ├── LLAppInfoWindow.h │ │ │ │ │ │ ├── LLAppInfoWindow.m │ │ │ │ │ │ ├── LLWindowManager+AppInfo.h │ │ │ │ │ │ └── LLWindowManager+AppInfo.m │ │ │ │ ├── Crash │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLCrashHelper.h │ │ │ │ │ │ ├── LLCrashHelper.m │ │ │ │ │ │ ├── LLCrashModel.h │ │ │ │ │ │ └── LLCrashModel.m │ │ │ │ │ ├── LLCrash.h │ │ │ │ │ ├── LLCrashComponent.h │ │ │ │ │ ├── LLCrashComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLCrashCell.h │ │ │ │ │ │ ├── LLCrashCell.m │ │ │ │ │ │ ├── LLCrashDetailViewController.h │ │ │ │ │ │ ├── LLCrashDetailViewController.m │ │ │ │ │ │ ├── LLCrashViewController.h │ │ │ │ │ │ ├── LLCrashViewController.m │ │ │ │ │ │ ├── LLCrashWindow.h │ │ │ │ │ │ ├── LLCrashWindow.m │ │ │ │ │ │ ├── LLWindowManager+Crash.h │ │ │ │ │ │ └── LLWindowManager+Crash.m │ │ │ │ ├── Hierarchy │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── EnumDescription │ │ │ │ │ │ │ ├── LLEnumDescription.h │ │ │ │ │ │ │ └── LLEnumDescription.m │ │ │ │ │ │ ├── LLHierarchyHelper.h │ │ │ │ │ │ ├── LLHierarchyHelper.m │ │ │ │ │ │ ├── NSObject+LL_Hierarchy.h │ │ │ │ │ │ └── NSObject+LL_Hierarchy.m │ │ │ │ │ ├── LLHierarchy.h │ │ │ │ │ ├── LLHierarchyComponent.h │ │ │ │ │ ├── LLHierarchyComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLHierarchyDetailViewController.h │ │ │ │ │ │ ├── LLHierarchyDetailViewController.m │ │ │ │ │ │ ├── LLHierarchyInfoView.h │ │ │ │ │ │ ├── LLHierarchyInfoView.m │ │ │ │ │ │ ├── LLHierarchyPickerView.h │ │ │ │ │ │ ├── LLHierarchyPickerView.m │ │ │ │ │ │ ├── LLHierarchyViewController.h │ │ │ │ │ │ ├── LLHierarchyViewController.m │ │ │ │ │ │ ├── LLHierarchyWindow.h │ │ │ │ │ │ ├── LLHierarchyWindow.m │ │ │ │ │ │ ├── LLWindowManager+Hierarchy.h │ │ │ │ │ │ └── LLWindowManager+Hierarchy.m │ │ │ │ ├── Html │ │ │ │ │ ├── LLHtml.h │ │ │ │ │ ├── LLHtmlComponent.h │ │ │ │ │ ├── LLHtmlComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLHtmlConfigViewController.h │ │ │ │ │ │ ├── LLHtmlConfigViewController.m │ │ │ │ │ │ ├── LLHtmlUIWebViewController.h │ │ │ │ │ │ ├── LLHtmlUIWebViewController.m │ │ │ │ │ │ ├── LLHtmlViewController.h │ │ │ │ │ │ ├── LLHtmlViewController.m │ │ │ │ │ │ ├── LLHtmlWindow.h │ │ │ │ │ │ ├── LLHtmlWindow.m │ │ │ │ │ │ ├── LLHtmlWkWebViewController.h │ │ │ │ │ │ ├── LLHtmlWkWebViewController.m │ │ │ │ │ │ ├── LLWindowManager+Html.h │ │ │ │ │ │ └── LLWindowManager+Html.m │ │ │ │ ├── Location │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── CLLocation │ │ │ │ │ │ │ ├── CLLocation+LL_Location.h │ │ │ │ │ │ │ └── CLLocation+LL_Location.m │ │ │ │ │ │ ├── CLLocationManager │ │ │ │ │ │ │ ├── CLLocationManager+LL_Location.h │ │ │ │ │ │ │ └── CLLocationManager+LL_Location.m │ │ │ │ │ │ ├── LLLocationHelper.h │ │ │ │ │ │ ├── LLLocationHelper.m │ │ │ │ │ │ ├── LLLocationMockRouteModel.h │ │ │ │ │ │ ├── LLLocationMockRouteModel.m │ │ │ │ │ │ ├── LLLocationProxy.h │ │ │ │ │ │ ├── LLLocationProxy.m │ │ │ │ │ │ └── MKMapView │ │ │ │ │ │ │ ├── MKMapView+LL_Location.h │ │ │ │ │ │ │ └── MKMapView+LL_Location.m │ │ │ │ │ ├── LLLocation.h │ │ │ │ │ ├── LLLocationComponent.h │ │ │ │ │ ├── LLLocationComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLAnnotation.h │ │ │ │ │ │ ├── LLAnnotation.m │ │ │ │ │ │ ├── LLLocationViewController.h │ │ │ │ │ │ ├── LLLocationViewController.m │ │ │ │ │ │ ├── LLLocationWindow.h │ │ │ │ │ │ ├── LLLocationWindow.m │ │ │ │ │ │ ├── LLPinAnnotationView.h │ │ │ │ │ │ ├── LLPinAnnotationView.m │ │ │ │ │ │ ├── LLWindowManager+Location.h │ │ │ │ │ │ └── LLWindowManager+Location.m │ │ │ │ ├── Log │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLLogHelper.h │ │ │ │ │ │ ├── LLLogHelper.m │ │ │ │ │ │ ├── LLLogModel.h │ │ │ │ │ │ └── LLLogModel.m │ │ │ │ │ ├── LLLog.h │ │ │ │ │ ├── LLLogComponent.h │ │ │ │ │ ├── LLLogComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLLogCell.h │ │ │ │ │ │ ├── LLLogCell.m │ │ │ │ │ │ ├── LLLogDetailViewController.h │ │ │ │ │ │ ├── LLLogDetailViewController.m │ │ │ │ │ │ ├── LLLogFilterView.h │ │ │ │ │ │ ├── LLLogFilterView.m │ │ │ │ │ │ ├── LLLogViewController.h │ │ │ │ │ │ ├── LLLogViewController.m │ │ │ │ │ │ ├── LLLogWindow.h │ │ │ │ │ │ ├── LLLogWindow.m │ │ │ │ │ │ ├── LLWindowManager+Log.h │ │ │ │ │ │ └── LLWindowManager+Log.m │ │ │ │ ├── Magnifier │ │ │ │ │ ├── LLMagnifier.h │ │ │ │ │ ├── LLMagnifierComponent.h │ │ │ │ │ ├── LLMagnifierComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLMagnifierInfoView.h │ │ │ │ │ │ ├── LLMagnifierInfoView.m │ │ │ │ │ │ ├── LLMagnifierView.h │ │ │ │ │ │ ├── LLMagnifierView.m │ │ │ │ │ │ ├── LLMagnifierViewController.h │ │ │ │ │ │ ├── LLMagnifierViewController.m │ │ │ │ │ │ ├── LLMagnifierWindow.h │ │ │ │ │ │ ├── LLMagnifierWindow.m │ │ │ │ │ │ ├── LLWindowManager+Magnifier.h │ │ │ │ │ │ └── LLWindowManager+Magnifier.m │ │ │ │ ├── Network │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLNetworkHelper.h │ │ │ │ │ │ ├── LLNetworkHelper.m │ │ │ │ │ │ ├── LLNetworkModel.h │ │ │ │ │ │ ├── LLNetworkModel.m │ │ │ │ │ │ ├── LLReachability.h │ │ │ │ │ │ ├── LLReachability.m │ │ │ │ │ │ ├── LLURLProtocol.h │ │ │ │ │ │ ├── LLURLProtocol.m │ │ │ │ │ │ ├── NSData │ │ │ │ │ │ │ ├── NSData+LL_Network.h │ │ │ │ │ │ │ └── NSData+LL_Network.m │ │ │ │ │ │ ├── NSHTTPURLResponse │ │ │ │ │ │ │ ├── NSHTTPURLResponse+LL_Network.h │ │ │ │ │ │ │ └── NSHTTPURLResponse+LL_Network.m │ │ │ │ │ │ ├── NSInputStream │ │ │ │ │ │ │ ├── NSInputStream+LL_Network.h │ │ │ │ │ │ │ └── NSInputStream+LL_Network.m │ │ │ │ │ │ ├── NSURLSession │ │ │ │ │ │ │ ├── NSURLSession+LL_Network.h │ │ │ │ │ │ │ └── NSURLSession+LL_Network.m │ │ │ │ │ │ └── NSURLSessionConfiguration │ │ │ │ │ │ │ ├── NSURLSessionConfiguration+LL_Network.h │ │ │ │ │ │ │ └── NSURLSessionConfiguration+LL_Network.m │ │ │ │ │ ├── LLNetwork.h │ │ │ │ │ ├── LLNetworkComponent.h │ │ │ │ │ ├── LLNetworkComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLNetworkCell.h │ │ │ │ │ │ ├── LLNetworkCell.m │ │ │ │ │ │ ├── LLNetworkDetailViewController.h │ │ │ │ │ │ ├── LLNetworkDetailViewController.m │ │ │ │ │ │ ├── LLNetworkFilterView.h │ │ │ │ │ │ ├── LLNetworkFilterView.m │ │ │ │ │ │ ├── LLNetworkFilterViewController.h │ │ │ │ │ │ ├── LLNetworkFilterViewController.m │ │ │ │ │ │ ├── LLNetworkImageCell.h │ │ │ │ │ │ ├── LLNetworkImageCell.m │ │ │ │ │ │ ├── LLNetworkViewController.h │ │ │ │ │ │ ├── LLNetworkViewController.m │ │ │ │ │ │ ├── LLNetworkWindow.h │ │ │ │ │ │ ├── LLNetworkWindow.m │ │ │ │ │ │ ├── LLWindowManager+Network.h │ │ │ │ │ │ └── LLWindowManager+Network.m │ │ │ │ ├── Ruler │ │ │ │ │ ├── LLRuler.h │ │ │ │ │ ├── LLRulerComponent.h │ │ │ │ │ ├── LLRulerComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLRulerPickerInfoView.h │ │ │ │ │ │ ├── LLRulerPickerInfoView.m │ │ │ │ │ │ ├── LLRulerPickerView.h │ │ │ │ │ │ ├── LLRulerPickerView.m │ │ │ │ │ │ ├── LLRulerViewController.h │ │ │ │ │ │ ├── LLRulerViewController.m │ │ │ │ │ │ ├── LLRulerWindow.h │ │ │ │ │ │ ├── LLRulerWindow.m │ │ │ │ │ │ ├── LLWindowManager+Ruler.h │ │ │ │ │ │ └── LLWindowManager+Ruler.m │ │ │ │ ├── Sandbox │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLSandboxHelper.h │ │ │ │ │ │ ├── LLSandboxHelper.m │ │ │ │ │ │ ├── LLSandboxModel.h │ │ │ │ │ │ └── LLSandboxModel.m │ │ │ │ │ ├── LLSandbox.h │ │ │ │ │ ├── LLSandboxComponent.h │ │ │ │ │ ├── LLSandboxComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLPreviewController.h │ │ │ │ │ │ ├── LLPreviewController.m │ │ │ │ │ │ ├── LLSandboxCell.h │ │ │ │ │ │ ├── LLSandboxCell.m │ │ │ │ │ │ ├── LLSandboxHtmlPreviewController.h │ │ │ │ │ │ ├── LLSandboxHtmlPreviewController.m │ │ │ │ │ │ ├── LLSandboxImagePreviewController.h │ │ │ │ │ │ ├── LLSandboxImagePreviewController.m │ │ │ │ │ │ ├── LLSandboxPreviewController.h │ │ │ │ │ │ ├── LLSandboxPreviewController.m │ │ │ │ │ │ ├── LLSandboxTextPreviewController.h │ │ │ │ │ │ ├── LLSandboxTextPreviewController.m │ │ │ │ │ │ ├── LLSandboxVideoPreviewController.h │ │ │ │ │ │ ├── LLSandboxVideoPreviewController.m │ │ │ │ │ │ ├── LLSandboxViewController.h │ │ │ │ │ │ ├── LLSandboxViewController.m │ │ │ │ │ │ ├── LLSandboxWindow.h │ │ │ │ │ │ ├── LLSandboxWindow.m │ │ │ │ │ │ ├── LLWindowManager+Sandbox.h │ │ │ │ │ │ └── LLWindowManager+Sandbox.m │ │ │ │ ├── Screenshot │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLScreenshotHelper.h │ │ │ │ │ │ └── LLScreenshotHelper.m │ │ │ │ │ ├── LLConvenientScreenshotComponent.h │ │ │ │ │ ├── LLConvenientScreenshotComponent.m │ │ │ │ │ ├── LLScreenshot.h │ │ │ │ │ ├── LLScreenshotComponent.h │ │ │ │ │ ├── LLScreenshotComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLScreenshotActionView.h │ │ │ │ │ │ ├── LLScreenshotActionView.m │ │ │ │ │ │ ├── LLScreenshotBaseOperation.h │ │ │ │ │ │ ├── LLScreenshotBaseOperation.m │ │ │ │ │ │ ├── LLScreenshotDefine.h │ │ │ │ │ │ ├── LLScreenshotImageView.h │ │ │ │ │ │ ├── LLScreenshotImageView.m │ │ │ │ │ │ ├── LLScreenshotPreviewViewController.h │ │ │ │ │ │ ├── LLScreenshotPreviewViewController.m │ │ │ │ │ │ ├── LLScreenshotSelectorModel.h │ │ │ │ │ │ ├── LLScreenshotSelectorModel.m │ │ │ │ │ │ ├── LLScreenshotSelectorView.h │ │ │ │ │ │ ├── LLScreenshotSelectorView.m │ │ │ │ │ │ ├── LLScreenshotToolbar.h │ │ │ │ │ │ ├── LLScreenshotToolbar.m │ │ │ │ │ │ ├── LLScreenshotViewController.h │ │ │ │ │ │ ├── LLScreenshotViewController.m │ │ │ │ │ │ ├── LLScreenshotWindow.h │ │ │ │ │ │ ├── LLScreenshotWindow.m │ │ │ │ │ │ ├── LLWindowManager+Screenshot.h │ │ │ │ │ │ └── LLWindowManager+Screenshot.m │ │ │ │ ├── ShortCut │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLShortCutHelper.h │ │ │ │ │ │ ├── LLShortCutHelper.m │ │ │ │ │ │ ├── LLShortCutModel.h │ │ │ │ │ │ └── LLShortCutModel.m │ │ │ │ │ ├── LLShortCut.h │ │ │ │ │ ├── LLShortCutComponent.h │ │ │ │ │ ├── LLShortCutComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLShortCutViewController.h │ │ │ │ │ │ ├── LLShortCutViewController.m │ │ │ │ │ │ ├── LLShortCutWindow.h │ │ │ │ │ │ ├── LLShortCutWindow.m │ │ │ │ │ │ ├── LLWindowManager+ShortCut.h │ │ │ │ │ │ └── LLWindowManager+ShortCut.m │ │ │ │ └── WidgetBorder │ │ │ │ │ ├── Function │ │ │ │ │ ├── LLWidgetBorderHelper.h │ │ │ │ │ ├── LLWidgetBorderHelper.m │ │ │ │ │ ├── UIView+LLWidgetBorder.h │ │ │ │ │ └── UIView+LLWidgetBorder.m │ │ │ │ │ ├── LLWidgetBorder.h │ │ │ │ │ ├── LLWidgetBorderComponent.h │ │ │ │ │ ├── LLWidgetBorderComponent.m │ │ │ │ │ └── UserInterface │ │ │ │ │ ├── LLWidgetBorderViewController.h │ │ │ │ │ ├── LLWidgetBorderViewController.m │ │ │ │ │ ├── LLWidgetBorderWindow.h │ │ │ │ │ ├── LLWidgetBorderWindow.m │ │ │ │ │ ├── LLWindowManager+WidgetBorder.h │ │ │ │ │ └── LLWindowManager+WidgetBorder.m │ │ │ ├── Others │ │ │ │ ├── Category │ │ │ │ │ ├── NSArray │ │ │ │ │ │ ├── NSArray+LL_Utils.h │ │ │ │ │ │ └── NSArray+LL_Utils.m │ │ │ │ │ ├── NSDictionary │ │ │ │ │ │ ├── NSDictionary+LL_Utils.h │ │ │ │ │ │ └── NSDictionary+LL_Utils.m │ │ │ │ │ ├── NSObject │ │ │ │ │ │ ├── NSObject+LL_Runtime.h │ │ │ │ │ │ ├── NSObject+LL_Runtime.m │ │ │ │ │ │ ├── NSObject+LL_Utils.h │ │ │ │ │ │ └── NSObject+LL_Utils.m │ │ │ │ │ ├── NSString │ │ │ │ │ │ ├── NSString+LL_Utils.h │ │ │ │ │ │ └── NSString+LL_Utils.m │ │ │ │ │ ├── NSUserDefaults │ │ │ │ │ │ ├── NSUserDefaults+LL_Utils.h │ │ │ │ │ │ └── NSUserDefaults+LL_Utils.m │ │ │ │ │ ├── UIButton │ │ │ │ │ │ ├── UIButton+LL_Utils.h │ │ │ │ │ │ └── UIButton+LL_Utils.m │ │ │ │ │ ├── UIColor │ │ │ │ │ │ ├── UIColor+LL_Utils.h │ │ │ │ │ │ └── UIColor+LL_Utils.m │ │ │ │ │ ├── UIImage │ │ │ │ │ │ ├── UIImage+LL_Utils.h │ │ │ │ │ │ └── UIImage+LL_Utils.m │ │ │ │ │ ├── UIResponder │ │ │ │ │ │ ├── UIResponder+LL_Utils.h │ │ │ │ │ │ └── UIResponder+LL_Utils.m │ │ │ │ │ ├── UIView │ │ │ │ │ │ ├── UIView+LL_Utils.h │ │ │ │ │ │ └── UIView+LL_Utils.m │ │ │ │ │ ├── UIViewController │ │ │ │ │ │ ├── UIViewController+LL_Utils.h │ │ │ │ │ │ └── UIViewController+LL_Utils.m │ │ │ │ │ └── UIWindow │ │ │ │ │ │ ├── UIWindow+LL_Utils.h │ │ │ │ │ │ └── UIWindow+LL_Utils.m │ │ │ │ ├── CommonUI │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── LLBaseCollectionViewCell.h │ │ │ │ │ │ ├── LLBaseCollectionViewCell.m │ │ │ │ │ │ ├── LLBaseModel.h │ │ │ │ │ │ ├── LLBaseModel.m │ │ │ │ │ │ ├── LLBaseTableViewCell.h │ │ │ │ │ │ ├── LLBaseTableViewCell.m │ │ │ │ │ │ ├── LLBaseTableViewController.h │ │ │ │ │ │ ├── LLBaseTableViewController.m │ │ │ │ │ │ ├── LLBaseView.h │ │ │ │ │ │ ├── LLBaseView.m │ │ │ │ │ │ ├── LLBaseViewController.h │ │ │ │ │ │ ├── LLBaseViewController.m │ │ │ │ │ │ ├── LLBaseWindow.h │ │ │ │ │ │ └── LLBaseWindow.m │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── LLTableViewSelectableModel │ │ │ │ │ │ │ ├── LLTableViewSelectableDelegate.h │ │ │ │ │ │ │ ├── LLTableViewSelectableModel.h │ │ │ │ │ │ │ └── LLTableViewSelectableModel.m │ │ │ │ │ │ └── Storage │ │ │ │ │ │ │ ├── LLStorageModel.h │ │ │ │ │ │ │ └── LLStorageModel.m │ │ │ │ │ ├── View │ │ │ │ │ │ ├── AnimateView │ │ │ │ │ │ │ ├── LLAnimateView.h │ │ │ │ │ │ │ └── LLAnimateView.m │ │ │ │ │ │ ├── CellView │ │ │ │ │ │ │ ├── LLDetailTitleCellView.h │ │ │ │ │ │ │ ├── LLDetailTitleCellView.m │ │ │ │ │ │ │ ├── LLDetailTitleSelectorCellView.h │ │ │ │ │ │ │ ├── LLDetailTitleSelectorCellView.m │ │ │ │ │ │ │ ├── LLTitleCellView.h │ │ │ │ │ │ │ ├── LLTitleCellView.m │ │ │ │ │ │ │ ├── LLTitleSwitchCellView.h │ │ │ │ │ │ │ └── LLTitleSwitchCellView.m │ │ │ │ │ │ ├── FilterView │ │ │ │ │ │ │ ├── LLFilterDatePickerView.h │ │ │ │ │ │ │ ├── LLFilterDatePickerView.m │ │ │ │ │ │ │ ├── LLFilterDateView.h │ │ │ │ │ │ │ ├── LLFilterDateView.m │ │ │ │ │ │ │ ├── LLFilterEventView.h │ │ │ │ │ │ │ ├── LLFilterEventView.m │ │ │ │ │ │ │ ├── LLFilterFilePickerView.h │ │ │ │ │ │ │ ├── LLFilterFilePickerView.m │ │ │ │ │ │ │ ├── LLFilterLabelCell.h │ │ │ │ │ │ │ ├── LLFilterLabelCell.m │ │ │ │ │ │ │ ├── LLFilterLabelModel.h │ │ │ │ │ │ │ ├── LLFilterLabelModel.m │ │ │ │ │ │ │ ├── LLFilterOtherView.h │ │ │ │ │ │ │ ├── LLFilterOtherView.m │ │ │ │ │ │ │ ├── LLFilterTextFieldCell.h │ │ │ │ │ │ │ ├── LLFilterTextFieldCell.m │ │ │ │ │ │ │ ├── LLFilterTextFieldModel.h │ │ │ │ │ │ │ ├── LLFilterTextFieldModel.m │ │ │ │ │ │ │ ├── LLFilterView.h │ │ │ │ │ │ │ └── LLFilterView.m │ │ │ │ │ │ ├── InfoView │ │ │ │ │ │ │ ├── LLInfoView.h │ │ │ │ │ │ │ └── LLInfoView.m │ │ │ │ │ │ ├── MoveView │ │ │ │ │ │ │ ├── LLMoveView.h │ │ │ │ │ │ │ └── LLMoveView.m │ │ │ │ │ │ ├── MoveWindow │ │ │ │ │ │ │ ├── LLMoveWindow.h │ │ │ │ │ │ │ └── LLMoveWindow.m │ │ │ │ │ │ ├── NoneCopyTextField │ │ │ │ │ │ │ ├── LLNoneCopyTextField.h │ │ │ │ │ │ │ └── LLNoneCopyTextField.m │ │ │ │ │ │ ├── PickerView │ │ │ │ │ │ │ ├── LLPickerView.h │ │ │ │ │ │ │ └── LLPickerView.m │ │ │ │ │ │ ├── SubTitleTableViewCell │ │ │ │ │ │ │ ├── LLSubTitleTableViewCell.h │ │ │ │ │ │ │ ├── LLSubTitleTableViewCell.m │ │ │ │ │ │ │ └── LLUITableViewLongPressGestureRecognizerDelegate.h │ │ │ │ │ │ ├── TabBarButton │ │ │ │ │ │ │ ├── LLButton.h │ │ │ │ │ │ │ └── LLButton.m │ │ │ │ │ │ └── TitleCell │ │ │ │ │ │ │ ├── LLDetailTitleCell.h │ │ │ │ │ │ │ ├── LLDetailTitleCell.m │ │ │ │ │ │ │ ├── LLDetailTitleSelectorCell.h │ │ │ │ │ │ │ ├── LLDetailTitleSelectorCell.m │ │ │ │ │ │ │ ├── LLLeftTitleCell.h │ │ │ │ │ │ │ ├── LLLeftTitleCell.m │ │ │ │ │ │ │ ├── LLTitleCell.h │ │ │ │ │ │ │ ├── LLTitleCell.m │ │ │ │ │ │ │ ├── LLTitleCellCategoryModel.h │ │ │ │ │ │ │ ├── LLTitleCellCategoryModel.m │ │ │ │ │ │ │ ├── LLTitleCellModel.h │ │ │ │ │ │ │ ├── LLTitleCellModel.m │ │ │ │ │ │ │ ├── LLTitleHeaderView.h │ │ │ │ │ │ │ ├── LLTitleHeaderView.m │ │ │ │ │ │ │ ├── LLTitleSliderCell.h │ │ │ │ │ │ │ ├── LLTitleSliderCell.m │ │ │ │ │ │ │ ├── LLTitleSwitchCell.h │ │ │ │ │ │ │ └── LLTitleSwitchCell.m │ │ │ │ │ ├── ViewController │ │ │ │ │ │ ├── ComponentNavigationController │ │ │ │ │ │ │ ├── LLComponentNavigationController.h │ │ │ │ │ │ │ └── LLComponentNavigationController.m │ │ │ │ │ │ ├── ComponentViewController │ │ │ │ │ │ │ ├── LLBaseComponentViewController.h │ │ │ │ │ │ │ └── LLBaseComponentViewController.m │ │ │ │ │ │ ├── EditTableViewController │ │ │ │ │ │ │ ├── LLEditTableViewController.h │ │ │ │ │ │ │ └── LLEditTableViewController.m │ │ │ │ │ │ ├── NavigationController │ │ │ │ │ │ │ ├── LLNavigationController.h │ │ │ │ │ │ │ └── LLNavigationController.m │ │ │ │ │ │ └── TitleViewController │ │ │ │ │ │ │ ├── LLTitleViewController.h │ │ │ │ │ │ │ └── LLTitleViewController.m │ │ │ │ │ └── Window │ │ │ │ │ │ ├── ComponentWindow │ │ │ │ │ │ ├── LLComponentWindow.h │ │ │ │ │ │ └── LLComponentWindow.m │ │ │ │ │ │ └── EntryWindow │ │ │ │ │ │ ├── LLEntryBallView.h │ │ │ │ │ │ ├── LLEntryBallView.m │ │ │ │ │ │ ├── LLEntryBigTitleView.h │ │ │ │ │ │ ├── LLEntryBigTitleView.m │ │ │ │ │ │ ├── LLEntryStyleModel.h │ │ │ │ │ │ ├── LLEntryStyleModel.m │ │ │ │ │ │ ├── LLEntryTitleView.h │ │ │ │ │ │ ├── LLEntryTitleView.m │ │ │ │ │ │ ├── LLEntryView.h │ │ │ │ │ │ ├── LLEntryView.m │ │ │ │ │ │ ├── LLEntryViewController.h │ │ │ │ │ │ ├── LLEntryViewController.m │ │ │ │ │ │ ├── LLEntryWindow.h │ │ │ │ │ │ └── LLEntryWindow.m │ │ │ │ ├── Component │ │ │ │ │ ├── Function │ │ │ │ │ │ ├── LLFunctionComponent.h │ │ │ │ │ │ ├── LLFunctionComponent.m │ │ │ │ │ │ └── UserInterface │ │ │ │ │ │ │ ├── LLFunctionItemContainerView.h │ │ │ │ │ │ │ ├── LLFunctionItemContainerView.m │ │ │ │ │ │ │ ├── LLFunctionItemModel.h │ │ │ │ │ │ │ ├── LLFunctionItemModel.m │ │ │ │ │ │ │ ├── LLFunctionItemView.h │ │ │ │ │ │ │ ├── LLFunctionItemView.m │ │ │ │ │ │ │ ├── LLFunctionViewController.h │ │ │ │ │ │ │ ├── LLFunctionViewController.m │ │ │ │ │ │ │ ├── LLFunctionWindow.h │ │ │ │ │ │ │ └── LLFunctionWindow.m │ │ │ │ │ ├── LLComponent.h │ │ │ │ │ ├── LLComponent.m │ │ │ │ │ ├── LLComponentDelegate.h │ │ │ │ │ └── Setting │ │ │ │ │ │ ├── LLSettingComponent.h │ │ │ │ │ │ ├── LLSettingComponent.m │ │ │ │ │ │ └── UserInterface │ │ │ │ │ │ ├── LLSettingViewController.h │ │ │ │ │ │ ├── LLSettingViewController.m │ │ │ │ │ │ ├── LLSettingWindow.h │ │ │ │ │ │ └── LLSettingWindow.m │ │ │ │ ├── ConfigHelper │ │ │ │ │ ├── LLConfigHelper.h │ │ │ │ │ └── LLConfigHelper.m │ │ │ │ ├── Const │ │ │ │ │ ├── LLConst.h │ │ │ │ │ └── LLConst.m │ │ │ │ ├── Define │ │ │ │ │ ├── LLLogDefine.h │ │ │ │ │ └── LLNetworkDefine.h │ │ │ │ ├── Factory │ │ │ │ │ ├── LLFactory.h │ │ │ │ │ └── LLFactory.m │ │ │ │ ├── FormatterTool │ │ │ │ │ ├── LLFormatterTool.h │ │ │ │ │ └── LLFormatterTool.m │ │ │ │ ├── JsonTool │ │ │ │ │ ├── LLJsonTool.h │ │ │ │ │ └── LLJsonTool.m │ │ │ │ ├── Macros │ │ │ │ │ └── LLInternalMacros.h │ │ │ │ ├── Manager │ │ │ │ │ ├── SettingManager │ │ │ │ │ │ ├── LLSettingManager.h │ │ │ │ │ │ └── LLSettingManager.m │ │ │ │ │ ├── ThemeManager │ │ │ │ │ │ ├── LLThemeColor.h │ │ │ │ │ │ ├── LLThemeColor.m │ │ │ │ │ │ ├── LLThemeManager.h │ │ │ │ │ │ └── LLThemeManager.m │ │ │ │ │ └── WindowManager │ │ │ │ │ │ ├── LLWindowManager.h │ │ │ │ │ │ └── LLWindowManager.m │ │ │ │ ├── Proxy │ │ │ │ │ ├── LLProxy.h │ │ │ │ │ └── LLProxy.m │ │ │ │ ├── Resource │ │ │ │ │ ├── LLDebugTool.bundle │ │ │ │ │ │ ├── app@2x.png │ │ │ │ │ │ ├── app@3x.png │ │ │ │ │ │ ├── avi@2x.png │ │ │ │ │ │ ├── avi@3x.png │ │ │ │ │ │ ├── back@2x.png │ │ │ │ │ │ ├── back@3x.png │ │ │ │ │ │ ├── bottom@2x.png │ │ │ │ │ │ ├── bottom@3x.png │ │ │ │ │ │ ├── cancel@2x.png │ │ │ │ │ │ ├── cancel@3x.png │ │ │ │ │ │ ├── capture@2x.png │ │ │ │ │ │ ├── capture@3x.png │ │ │ │ │ │ ├── clear@2x.png │ │ │ │ │ │ ├── clear@3x.png │ │ │ │ │ │ ├── close@2x.png │ │ │ │ │ │ ├── close@3x.png │ │ │ │ │ │ ├── crash@2x.png │ │ │ │ │ │ ├── crash@3x.png │ │ │ │ │ │ ├── css@2x.png │ │ │ │ │ │ ├── css@3x.png │ │ │ │ │ │ ├── doc@2x.png │ │ │ │ │ │ ├── doc@3x.png │ │ │ │ │ │ ├── done@2x.png │ │ │ │ │ │ ├── done@3x.png │ │ │ │ │ │ ├── edit@2x.png │ │ │ │ │ │ ├── edit@3x.png │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── filter@2x.png │ │ │ │ │ │ ├── filter@3x.png │ │ │ │ │ │ ├── folder-empty@2x.png │ │ │ │ │ │ ├── folder-empty@3x.png │ │ │ │ │ │ ├── folder@2x.png │ │ │ │ │ │ ├── folder@3x.png │ │ │ │ │ │ ├── gif@2x.png │ │ │ │ │ │ ├── gif@3x.png │ │ │ │ │ │ ├── hierarchy@2x.png │ │ │ │ │ │ ├── hierarchy@3x.png │ │ │ │ │ │ ├── html5@2x.png │ │ │ │ │ │ ├── html5@3x.png │ │ │ │ │ │ ├── html@2x.png │ │ │ │ │ │ ├── html@3x.png │ │ │ │ │ │ ├── info@2x.png │ │ │ │ │ │ ├── info@3x.png │ │ │ │ │ │ ├── jpg@2x.png │ │ │ │ │ │ ├── jpg@3x.png │ │ │ │ │ │ ├── js@2x.png │ │ │ │ │ │ ├── js@3x.png │ │ │ │ │ │ ├── left@2x.png │ │ │ │ │ │ ├── left@3x.png │ │ │ │ │ │ ├── line-select@2x.png │ │ │ │ │ │ ├── line-select@3x.png │ │ │ │ │ │ ├── line@2x.png │ │ │ │ │ │ ├── line@3x.png │ │ │ │ │ │ ├── location@2x.png │ │ │ │ │ │ ├── location@3x.png │ │ │ │ │ │ ├── log@2x.png │ │ │ │ │ │ ├── log@3x.png │ │ │ │ │ │ ├── logo@2x.png │ │ │ │ │ │ ├── logo@3x.png │ │ │ │ │ │ ├── magnifier@2x.png │ │ │ │ │ │ ├── magnifier@3x.png │ │ │ │ │ │ ├── mov@2x.png │ │ │ │ │ │ ├── mov@3x.png │ │ │ │ │ │ ├── mp3@2x.png │ │ │ │ │ │ ├── mp3@3x.png │ │ │ │ │ │ ├── network@2x.png │ │ │ │ │ │ ├── network@3x.png │ │ │ │ │ │ ├── parent@2x.png │ │ │ │ │ │ ├── parent@3x.png │ │ │ │ │ │ ├── pdf@2x.png │ │ │ │ │ │ ├── pdf@3x.png │ │ │ │ │ │ ├── pen-select@2x.png │ │ │ │ │ │ ├── pen-select@3x.png │ │ │ │ │ │ ├── pen@2x.png │ │ │ │ │ │ ├── pen@3x.png │ │ │ │ │ │ ├── png@2x.png │ │ │ │ │ │ ├── png@3x.png │ │ │ │ │ │ ├── rect-select@2x.png │ │ │ │ │ │ ├── rect-select@3x.png │ │ │ │ │ │ ├── rect@2x.png │ │ │ │ │ │ ├── rect@3x.png │ │ │ │ │ │ ├── right@2x.png │ │ │ │ │ │ ├── right@3x.png │ │ │ │ │ │ ├── round-select@2x.png │ │ │ │ │ │ ├── round-select@3x.png │ │ │ │ │ │ ├── round@2x.png │ │ │ │ │ │ ├── round@3x.png │ │ │ │ │ │ ├── ruler@2x.png │ │ │ │ │ │ ├── ruler@3x.png │ │ │ │ │ │ ├── sandbox@2x.png │ │ │ │ │ │ ├── sandbox@3x.png │ │ │ │ │ │ ├── screenshot@2x.png │ │ │ │ │ │ ├── screenshot@3x.png │ │ │ │ │ │ ├── select@2x.png │ │ │ │ │ │ ├── select@3x.png │ │ │ │ │ │ ├── selector-big-select@2x.png │ │ │ │ │ │ ├── selector-big-select@3x.png │ │ │ │ │ │ ├── selector-big@2x.png │ │ │ │ │ │ ├── selector-big@3x.png │ │ │ │ │ │ ├── selector-blue@2x.png │ │ │ │ │ │ ├── selector-blue@3x.png │ │ │ │ │ │ ├── selector-gray@2x.png │ │ │ │ │ │ ├── selector-gray@3x.png │ │ │ │ │ │ ├── selector-green@2x.png │ │ │ │ │ │ ├── selector-green@3x.png │ │ │ │ │ │ ├── selector-medium-select@2x.png │ │ │ │ │ │ ├── selector-medium-select@3x.png │ │ │ │ │ │ ├── selector-medium@2x.png │ │ │ │ │ │ ├── selector-medium@3x.png │ │ │ │ │ │ ├── selector-red@2x.png │ │ │ │ │ │ ├── selector-red@3x.png │ │ │ │ │ │ ├── selector-small-select@2x.png │ │ │ │ │ │ ├── selector-small-select@3x.png │ │ │ │ │ │ ├── selector-small@2x.png │ │ │ │ │ │ ├── selector-small@3x.png │ │ │ │ │ │ ├── selector-triangle@2x.png │ │ │ │ │ │ ├── selector-triangle@3x.png │ │ │ │ │ │ ├── selector-white@2x.png │ │ │ │ │ │ ├── selector-white@3x.png │ │ │ │ │ │ ├── selector-yellow@2x.png │ │ │ │ │ │ ├── selector-yellow@3x.png │ │ │ │ │ │ ├── share@2x.png │ │ │ │ │ │ ├── share@3x.png │ │ │ │ │ │ ├── short-cut@2x.png │ │ │ │ │ │ ├── short-cut@3x.png │ │ │ │ │ │ ├── sql@2x.png │ │ │ │ │ │ ├── sql@3x.png │ │ │ │ │ │ ├── subview@2x.png │ │ │ │ │ │ ├── subview@3x.png │ │ │ │ │ │ ├── sure@2x.png │ │ │ │ │ │ ├── sure@3x.png │ │ │ │ │ │ ├── text-select@2x.png │ │ │ │ │ │ ├── text-select@3x.png │ │ │ │ │ │ ├── text@2x.png │ │ │ │ │ │ ├── text@3x.png │ │ │ │ │ │ ├── top@2x.png │ │ │ │ │ │ ├── top@3x.png │ │ │ │ │ │ ├── undo-disable@2x.png │ │ │ │ │ │ ├── undo-disable@3x.png │ │ │ │ │ │ ├── undo@2x.png │ │ │ │ │ │ ├── undo@3x.png │ │ │ │ │ │ ├── unknown@2x.png │ │ │ │ │ │ ├── unknown@3x.png │ │ │ │ │ │ ├── unselect@2x.png │ │ │ │ │ │ ├── unselect@3x.png │ │ │ │ │ │ ├── wav@2x.png │ │ │ │ │ │ ├── wav@3x.png │ │ │ │ │ │ ├── widget-border@2x.png │ │ │ │ │ │ ├── widget-border@3x.png │ │ │ │ │ │ ├── xls@2x.png │ │ │ │ │ │ ├── xls@3x.png │ │ │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ ├── zip@2x.png │ │ │ │ │ │ └── zip@3x.png │ │ │ │ │ └── LLImageNameConfig.h │ │ │ │ ├── Router │ │ │ │ │ ├── LLRouter+AppInfo.h │ │ │ │ │ ├── LLRouter+AppInfo.m │ │ │ │ │ ├── LLRouter+Crash.h │ │ │ │ │ ├── LLRouter+Crash.m │ │ │ │ │ ├── LLRouter+Location.h │ │ │ │ │ ├── LLRouter+Location.m │ │ │ │ │ ├── LLRouter+Log.h │ │ │ │ │ ├── LLRouter+Log.m │ │ │ │ │ ├── LLRouter+Network.h │ │ │ │ │ ├── LLRouter+Network.m │ │ │ │ │ ├── LLRouter+Screenshot.h │ │ │ │ │ ├── LLRouter+Screenshot.m │ │ │ │ │ ├── LLRouter+ShortCut.h │ │ │ │ │ ├── LLRouter+ShortCut.m │ │ │ │ │ ├── LLRouter.h │ │ │ │ │ └── LLRouter.m │ │ │ │ ├── ToastUtils │ │ │ │ │ ├── LLToastUtils.h │ │ │ │ │ └── LLToastUtils.m │ │ │ │ └── Tool │ │ │ │ │ ├── LLTool.h │ │ │ │ │ └── LLTool.m │ │ │ └── Storage │ │ │ │ ├── LLStorageManager.h │ │ │ │ └── LLStorageManager.m │ │ ├── DebugTool │ │ │ ├── LLConfig.h │ │ │ ├── LLConfig.m │ │ │ ├── LLDebugTool.h │ │ │ ├── LLDebugTool.m │ │ │ └── LLDebugToolMacros.h │ │ └── LLDebug.h │ └── README-cn.md ├── Manifest.lock ├── Moya │ ├── License.md │ ├── Readme.md │ └── Sources │ │ └── Moya │ │ ├── AnyEncodable.swift │ │ ├── Cancellable.swift │ │ ├── Endpoint.swift │ │ ├── Image.swift │ │ ├── Moya+Alamofire.swift │ │ ├── MoyaError.swift │ │ ├── MoyaProvider+Defaults.swift │ │ ├── MoyaProvider+Internal.swift │ │ ├── MoyaProvider.swift │ │ ├── MultiTarget.swift │ │ ├── MultipartFormData.swift │ │ ├── Plugin.swift │ │ ├── Plugins │ │ ├── AccessTokenPlugin.swift │ │ ├── CredentialsPlugin.swift │ │ ├── NetworkActivityPlugin.swift │ │ └── NetworkLoggerPlugin.swift │ │ ├── Response.swift │ │ ├── TargetType.swift │ │ ├── Task.swift │ │ ├── URL+Moya.swift │ │ ├── URLRequest+Encoding.swift │ │ └── ValidationType.swift ├── Pods.xcodeproj │ └── project.pbxproj ├── Result │ ├── LICENSE │ ├── README.md │ └── Result │ │ ├── Result.swift │ │ └── ResultProtocol.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ └── Alamofire.xcconfig │ ├── FMDB │ ├── FMDB-Info.plist │ ├── FMDB-dummy.m │ ├── FMDB-prefix.pch │ ├── FMDB-umbrella.h │ ├── FMDB.modulemap │ └── FMDB.xcconfig │ ├── LLDebugTool │ ├── LLDebugTool-Info.plist │ ├── LLDebugTool-dummy.m │ ├── LLDebugTool-prefix.pch │ ├── LLDebugTool-umbrella.h │ ├── LLDebugTool.modulemap │ └── LLDebugTool.xcconfig │ ├── Moya │ ├── Moya-Info.plist │ ├── Moya-dummy.m │ ├── Moya-prefix.pch │ ├── Moya-umbrella.h │ ├── Moya.modulemap │ └── Moya.xcconfig │ ├── Pods-LLDebugToolSwiftDemo │ ├── Pods-LLDebugToolSwiftDemo-Info.plist │ ├── Pods-LLDebugToolSwiftDemo-acknowledgements.markdown │ ├── Pods-LLDebugToolSwiftDemo-acknowledgements.plist │ ├── Pods-LLDebugToolSwiftDemo-dummy.m │ ├── Pods-LLDebugToolSwiftDemo-frameworks.sh │ ├── Pods-LLDebugToolSwiftDemo-umbrella.h │ ├── Pods-LLDebugToolSwiftDemo.debug.xcconfig │ ├── Pods-LLDebugToolSwiftDemo.modulemap │ └── Pods-LLDebugToolSwiftDemo.release.xcconfig │ ├── Pods-LLDebugToolSwiftDemoTests │ ├── Pods-LLDebugToolSwiftDemoTests-Info.plist │ ├── Pods-LLDebugToolSwiftDemoTests-acknowledgements.markdown │ ├── Pods-LLDebugToolSwiftDemoTests-acknowledgements.plist │ ├── Pods-LLDebugToolSwiftDemoTests-dummy.m │ ├── Pods-LLDebugToolSwiftDemoTests-umbrella.h │ ├── Pods-LLDebugToolSwiftDemoTests.debug.xcconfig │ ├── Pods-LLDebugToolSwiftDemoTests.modulemap │ └── Pods-LLDebugToolSwiftDemoTests.release.xcconfig │ ├── Pods-LLDebugToolSwiftDemoUITests │ ├── Pods-LLDebugToolSwiftDemoUITests-Info.plist │ ├── Pods-LLDebugToolSwiftDemoUITests-acknowledgements.markdown │ ├── Pods-LLDebugToolSwiftDemoUITests-acknowledgements.plist │ ├── Pods-LLDebugToolSwiftDemoUITests-dummy.m │ ├── Pods-LLDebugToolSwiftDemoUITests-umbrella.h │ ├── Pods-LLDebugToolSwiftDemoUITests.debug.xcconfig │ ├── Pods-LLDebugToolSwiftDemoUITests.modulemap │ └── Pods-LLDebugToolSwiftDemoUITests.release.xcconfig │ └── Result │ ├── Result-Info.plist │ ├── Result-dummy.m │ ├── Result-prefix.pch │ ├── Result-umbrella.h │ ├── Result.modulemap │ └── Result.xcconfig ├── README-cn.md └── README.md /LLDebugToolSwiftDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@1x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@2x-1.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@1x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@1x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-76@1x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/crash-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "crash-1.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/crash-1.imageset/crash-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/crash-1.imageset/crash-1.jpg -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/crash-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "crash-2.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Assets.xcassets/crash-2.imageset/crash-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Assets.xcassets/crash-2.imageset/crash-2.jpg -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/MyService.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MyService.swift 3 | // LLDebugToolSwiftDemo 4 | // 5 | // Created by Li on 2018/9/16. 6 | // 7 | 8 | import Foundation 9 | import Alamofire 10 | import Moya 11 | 12 | enum MyService { 13 | case zen 14 | } 15 | 16 | 17 | extension MyService : TargetType { 18 | var baseURL: URL { 19 | return URL(string:"http://baike.baidu.com/api/openapi/BaikeLemmaCardApi?&format=json&appid=379020&bk_key=%E6%B5%B7%E8%B4%BC%E7%8E%8B&bk_length=600")! 20 | } 21 | 22 | var path: String { 23 | return "" 24 | } 25 | 26 | var method: Moya.Method { 27 | return .get 28 | } 29 | 30 | var sampleData: Data { 31 | return Data() 32 | } 33 | 34 | var task: Task { 35 | return .requestPlain 36 | } 37 | 38 | var headers: [String : String]? { 39 | return nil 40 | } 41 | 42 | 43 | } 44 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Resource/LLDebugTool.gif -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Resource/LLDebugTool.jpg -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.json: -------------------------------------------------------------------------------- 1 | { 2 | "key" : "LLDebugTool", 3 | "data" : [ 4 | {"lng" : 113.944125, "lat" : 22.524385}, 5 | {"lng" : 113.944200, "lat" : 22.524454} 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.md: -------------------------------------------------------------------------------- 1 | # LLDebugTool 2 | 3 | * LLDebugTool HTML Preview 4 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Resource/LLDebugTool.mp3 -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Resource/LLDebugTool.mp4 -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Resource/LLDebugTool.pdf -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Key 6 | LLDebugTool 7 | 8 | 9 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/LLDebugToolSwiftDemo/Resource/LLDebugTool.png -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/Resource/LLDebugTool.txt: -------------------------------------------------------------------------------- 1 | LLDebugTool HTML Preview -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | LLDebugToolSwiftDemo 4 | 5 | Created by Li on 2018/9/13. 6 | 7 | */ 8 | 9 | NSPhotoLibraryUsageDescription = "Only for demo display. If you apply for photo album permission in your project, screenshot will be stored in photo album at the same time."; 10 | NSPhotoLibraryAddUsageDescription = "Only for demo display. If you apply for photo album permission in your project, screenshot will be stored in photo album at the same time"; 11 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | LLDebugToolSwiftDemo 4 | 5 | Created by Li on 2018/9/13. 6 | 7 | */ 8 | 9 | NSPhotoLibraryUsageDescription = "仅用于demo展示,如果你的项目中申请了相册权限,截屏时会同时储存到相册。"; 10 | NSPhotoLibraryAddUsageDescription = "仅用于demo展示,如果你的项目中申请了相册权限,截屏时会同时储存到相册"; 11 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Copyright (c) 2018 LLDebugTool Software Foundation"; ObjectID = "3cB-sd-k4y"; */ 3 | "3cB-sd-k4y.text" = "Copyright (c) 2018 LLDebugTool Software Foundation"; 4 | 5 | /* Class = "UILabel"; text = "LLDebugToolSwift Demo"; ObjectID = "8O1-KJ-xz2"; */ 6 | "8O1-KJ-xz2.text" = "LLDebugToolSwift Demo"; 7 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemoTests/LLDebugToolSwiftDemoTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LLDebugToolSwiftDemoTests.swift 3 | // LLDebugToolSwiftDemoTests 4 | // 5 | // Created by Li on 2018/9/12. 6 | // 7 | 8 | import XCTest 9 | @testable import LLDebugToolSwiftDemo 10 | 11 | class LLDebugToolSwiftDemoTests: XCTestCase { 12 | 13 | override func setUp() { 14 | super.setUp() 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | super.tearDown() 21 | } 22 | 23 | func testExample() { 24 | // This is an example of a functional test case. 25 | // Use XCTAssert and related functions to verify your tests produce the correct results. 26 | } 27 | 28 | func testPerformanceExample() { 29 | // This is an example of a performance test case. 30 | self.measure { 31 | // Put the code you want to measure the time of here. 32 | } 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemoUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /LLDebugToolSwiftDemoUITests/LLDebugToolSwiftDemoUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LLDebugToolSwiftDemoUITests.swift 3 | // LLDebugToolSwiftDemoUITests 4 | // 5 | // Created by Li on 2018/9/12. 6 | // 7 | 8 | import XCTest 9 | 10 | class LLDebugToolSwiftDemoUITests: XCTestCase { 11 | 12 | override func setUp() { 13 | super.setUp() 14 | 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | 17 | // In UI tests it is usually best to stop immediately when a failure occurs. 18 | continueAfterFailure = false 19 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 20 | XCUIApplication().launch() 21 | 22 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 23 | } 24 | 25 | override func tearDown() { 26 | // Put teardown code here. This method is called after the invocation of each test method in the class. 27 | super.tearDown() 28 | } 29 | 30 | func testExample() { 31 | // Use recording to get started writing UI tests. 32 | // Use XCTAssert and related functions to verify your tests produce the correct results. 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'LLDebugToolSwiftDemo' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for LLDebugToolSwiftDemo 9 | 10 | pod 'LLDebugTool' , '1.3.8.1' 11 | 12 | pod 'Alamofire' , '4.7.3' 13 | 14 | pod 'Moya' , '11.0.2' 15 | 16 | target 'LLDebugToolSwiftDemoTests' do 17 | inherit! :search_paths 18 | # Pods for testing 19 | 20 | end 21 | 22 | target 'LLDebugToolSwiftDemoUITests' do 23 | inherit! :search_paths 24 | # Pods for testing 25 | 26 | end 27 | 28 | end 29 | -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- 1 | If you are using FMDB in your project, I'd love to hear about it. Let Gus know 2 | by sending an email to gus@flyingmeat.com. 3 | 4 | And if you happen to come across either Gus Mueller or Rob Ryan in a bar, you 5 | might consider purchasing a drink of their choosing if FMDB has been useful to 6 | you. 7 | 8 | Finally, and shortly, this is the MIT License. 9 | 10 | Copyright (c) 2008-2014 Flying Meat Inc. 11 | 12 | Permission is hereby granted, free of charge, to any person obtaining a copy 13 | of this software and associated documentation files (the "Software"), to deal 14 | in the Software without restriction, including without limitation the rights 15 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 16 | copies of the Software, and to permit persons to whom the Software is 17 | furnished to do so, subject to the following conditions: 18 | 19 | The above copyright notice and this permission notice shall be included in 20 | all copies or substantial portions of the Software. 21 | 22 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 23 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 24 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 25 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 26 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 27 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 28 | THE SOFTWARE. -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | FOUNDATION_EXPORT double FMDBVersionNumber; 4 | FOUNDATION_EXPORT const unsigned char FMDBVersionString[]; 5 | 6 | #import "FMDatabase.h" 7 | #import "FMResultSet.h" 8 | #import "FMDatabaseAdditions.h" 9 | #import "FMDatabaseQueue.h" 10 | #import "FMDatabasePool.h" 11 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/AppInfo/LLAppInfoComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLAppInfoComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// App info function component. 29 | @interface LLAppInfoComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/AppInfo/UserInterface/LLAppInfoWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLAppInfoWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// App info function window. 29 | @interface LLAppInfoWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Crash/LLCrashComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLCrashComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Crash function component. 29 | @interface LLCrashComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Crash/UserInterface/LLCrashWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLCrashWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Crash window function. 29 | @interface LLCrashWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Hierarchy/LLHierarchyComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLHierarchyComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Hierarchy function component. 29 | @interface LLHierarchyComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Hierarchy/UserInterface/LLHierarchyWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLHierarchyWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Hierarchy function window. 29 | @interface LLHierarchyWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Html/LLHtmlComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLHtmlComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | #import "LLHtmlWindow.h" 27 | 28 | NS_ASSUME_NONNULL_BEGIN 29 | 30 | /// Html function component. 31 | @interface LLHtmlComponent : LLComponent 32 | 33 | @end 34 | 35 | NS_ASSUME_NONNULL_END 36 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Html/UserInterface/LLHtmlWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLHtmlWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Html function window. 29 | @interface LLHtmlWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Location/Function/LLLocationProxy.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLocationProxy.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLProxy.h" 25 | 26 | #import 27 | 28 | NS_ASSUME_NONNULL_BEGIN 29 | 30 | @interface LLLocationProxy : LLProxy 31 | 32 | @end 33 | 34 | NS_ASSUME_NONNULL_END 35 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Location/Function/MKMapView/MKMapView+LL_Location.h: -------------------------------------------------------------------------------- 1 | // 2 | // MKMapView+LL_Location.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface MKMapView (LL_Location) 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Location/LLLocationComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLocationComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLLocationComponent : LLComponent 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Location/UserInterface/LLLocationViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLocationViewController.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLBaseComponentViewController.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLLocationViewController : LLBaseComponentViewController 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Location/UserInterface/LLLocationWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLocationWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLLocationWindow : LLComponentWindow 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Location/UserInterface/LLPinAnnotationView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLPinAnnotationView.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLPinAnnotationView : MKPinAnnotationView 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Log/LLLogComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLogComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Log function component. 29 | @interface LLLogComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Log/UserInterface/LLLogWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLogWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Log function window. 29 | @interface LLLogWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Magnifier/LLMagnifierComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLMagnifierComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Magnifier function component 29 | @interface LLMagnifierComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Magnifier/UserInterface/LLMagnifierWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLMagnifierWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Magnifier function window. 29 | @interface LLMagnifierWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Network/Function/LLURLProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLURLProtocol.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// specially url protocol, use to hook network request. 29 | @interface LLURLProtocol : NSURLProtocol 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Network/Function/NSURLSession/NSURLSession+LL_Network.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSURLSession+LL_Network.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// NSURLSession utils. 29 | @interface NSURLSession (LL_Network) 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Network/LLNetworkComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLNetworkComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Network function component. 29 | @interface LLNetworkComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Ruler/LLRulerComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLRulerComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Ruler function component. 29 | @interface LLRulerComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Ruler/UserInterface/LLRulerWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLRulerWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Ruler function window. 29 | @interface LLRulerWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Sandbox/LLSandboxComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLSandboxComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Sandbox function component. 29 | @interface LLSandboxComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Sandbox/UserInterface/LLSandboxVideoPreviewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLSandboxVideoPreviewController.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLSandboxPreviewController.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLSandboxVideoPreviewController : LLSandboxPreviewController 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Sandbox/UserInterface/LLSandboxWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLSandboxWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Sandbox function window. 29 | @interface LLSandboxWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Screenshot/LLConvenientScreenshotComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLConvenientScreenshotComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Convenient screenshot component. 29 | @interface LLConvenientScreenshotComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Screenshot/LLScreenshotComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLScreenshotComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Screen shot component. 29 | @interface LLScreenshotComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/Screenshot/UserInterface/LLScreenshotWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLScreenshotWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Screen shot window. 29 | @interface LLScreenshotWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/ShortCut/LLShortCutComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLShortCutComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLShortCutComponent : LLComponent 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/ShortCut/UserInterface/LLShortCutViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLShortCutViewController.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLTitleViewController.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLShortCutViewController : LLTitleViewController 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/ShortCut/UserInterface/LLShortCutWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLShortCutWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLShortCutWindow : LLComponentWindow 29 | 30 | @end 31 | 32 | NS_ASSUME_NONNULL_END 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/WidgetBorder/LLWidgetBorderComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLWidgetBorderComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Widget border function component. 29 | @interface LLWidgetBorderComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Component/WidgetBorder/UserInterface/LLWidgetBorderWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLWidgetBorderWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Widget border window. 29 | @interface LLWidgetBorderWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/FilterView/LLFilterTextFieldModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // LLFilterTextFieldModel.m 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLFilterTextFieldModel.h" 25 | 26 | @implementation LLFilterTextFieldModel 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/NoneCopyTextField/LLNoneCopyTextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLNoneCopyTextField.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// None copy text field. 29 | @interface LLNoneCopyTextField : UITextField 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/NoneCopyTextField/LLNoneCopyTextField.m: -------------------------------------------------------------------------------- 1 | // 2 | // LLNoneCopyTextField.m 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLNoneCopyTextField.h" 25 | 26 | @implementation LLNoneCopyTextField 27 | 28 | - (BOOL)canPerformAction:(SEL)action withSender:(id)sender { 29 | return NO; 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/PickerView/LLPickerView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLPickerView.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLMoveView.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Picker view. 29 | @interface LLPickerView : LLMoveView 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/TitleCell/LLDetailTitleSelectorCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLDetailTitleSelectorCell.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLDetailTitleCell.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Detail title selector cell. 29 | @interface LLDetailTitleSelectorCell : LLDetailTitleCell 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/TitleCell/LLLeftTitleCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLLeftTitleCell.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLTitleCell.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Title cell. 29 | @interface LLLeftTitleCell : LLTitleCell 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/TitleCell/LLTitleSliderCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLTitleSliderCell.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLLeftTitleCell.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Slider cell. 29 | @interface LLTitleSliderCell : LLLeftTitleCell 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/View/TitleCell/LLTitleSwitchCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLTitleSwitchCell.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLDetailTitleCell.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Switch cell. 29 | @interface LLTitleSwitchCell : LLDetailTitleCell 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/Window/ComponentWindow/LLComponentWindow.m: -------------------------------------------------------------------------------- 1 | // 2 | // LLComponentWindow.m 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | @implementation LLComponentWindow 27 | 28 | - (void)componentDidFinish { 29 | NSAssert(NO, @"Sub class must rewrite componentDidFinish:"); 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/Window/EntryWindow/LLEntryBallView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLEntryBallView.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLEntryView.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Entry ball view. 29 | @interface LLEntryBallView : LLEntryView 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/Window/EntryWindow/LLEntryBigTitleView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLEntryBigTitleView.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLEntryView.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Entry big title view. 29 | @interface LLEntryBigTitleView : LLEntryView 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/Window/EntryWindow/LLEntryTitleView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLEntryTitleView.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLEntryView.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Entry title view. 29 | @interface LLEntryTitleView : LLEntryView 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/CommonUI/Window/EntryWindow/LLEntryWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLEntryWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLMoveWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Entry window. 29 | @interface LLEntryWindow : LLMoveWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Component/Function/LLFunctionComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLFunctionComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Function component 29 | @interface LLFunctionComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Component/Function/UserInterface/LLFunctionWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLFunctionWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Function window. 29 | @interface LLFunctionWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Component/LLComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import 25 | #import "LLComponentDelegate.h" 26 | 27 | NS_ASSUME_NONNULL_BEGIN 28 | 29 | /// Component file. 30 | @interface LLComponent : NSObject 31 | 32 | @end 33 | 34 | NS_ASSUME_NONNULL_END 35 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Component/Setting/LLSettingComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLSettingComponent.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponent.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Setting component. 29 | @interface LLSettingComponent : LLComponent 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Component/Setting/UserInterface/LLSettingWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLSettingWindow.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLComponentWindow.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | /// Setting window. 29 | @interface LLSettingWindow : LLComponentWindow 30 | 31 | @end 32 | 33 | NS_ASSUME_NONNULL_END 34 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/app@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/app@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/app@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/app@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/avi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/avi@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/avi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/avi@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/back@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/back@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/bottom@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/bottom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/bottom@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/cancel@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/cancel@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/capture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/capture@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/capture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/capture@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/clear@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/clear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/clear@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/close@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/close@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/crash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/crash@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/crash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/crash@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/css@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/css@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/css@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/css@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/doc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/doc@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/doc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/doc@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/done@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/done@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/done@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/edit@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/edit@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/filter@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/filter@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder-empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder-empty@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder-empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder-empty@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/folder@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/gif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/gif@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/gif@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/gif@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/hierarchy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/hierarchy@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/hierarchy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/hierarchy@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html5@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html5@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/html@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/info@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/info@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/jpg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/jpg@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/jpg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/jpg@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/js@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/js@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/js@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/js@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/left@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/left@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/line@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/location@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/location@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/log@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/log@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/log@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/log@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/logo@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/logo@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/magnifier@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/magnifier@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/magnifier@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/magnifier@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mov@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mov@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mov@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mov@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mp3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mp3@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mp3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/mp3@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/network@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/network@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/network@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/network@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/parent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/parent@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/parent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/parent@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pdf@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pdf@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pdf@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/pen@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/png@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/png@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/png@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/png@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/rect@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/right@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/right@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/round@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/ruler@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/ruler@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/ruler@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/ruler@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sandbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sandbox@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sandbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sandbox@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/screenshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/screenshot@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/screenshot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/screenshot@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-big@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-blue@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-blue@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-gray@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-gray@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-green@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-green@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-medium@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-red@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-red@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-small@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-triangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-triangle@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-triangle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-triangle@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-white@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-white@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-yellow@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-yellow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/selector-yellow@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/share@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/share@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/short-cut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/short-cut@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/short-cut@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/short-cut@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sql@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sql@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sql@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sql@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/subview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/subview@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/subview@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/subview@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sure@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/sure@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text-select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text-select@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text-select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text-select@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/text@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/top@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/top@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/top@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo-disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo-disable@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo-disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo-disable@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/undo@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unknown@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unknown@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unselect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unselect@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unselect@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/unselect@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/wav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/wav@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/wav@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/wav@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/widget-border@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/widget-border@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/widget-border@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/widget-border@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/xls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/xls@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/xls@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/xls@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/zip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/zip@2x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/zip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HDB-Li/LLDebugToolSwift/ef4fa81e3e8c3974521dc2b0da8bdfa1ff161d8c/Pods/LLDebugTool/LLDebugTool/Core/Others/Resource/LLDebugTool.bundle/zip@3x.png -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Router/LLRouter+Crash.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLRouter+Crash.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLRouter.h" 25 | 26 | NS_ASSUME_NONNULL_BEGIN 27 | 28 | @interface LLRouter (Crash) 29 | 30 | + (Class _Nullable)crashModelClass; 31 | 32 | @end 33 | 34 | NS_ASSUME_NONNULL_END 35 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/Core/Others/Router/LLRouter+Crash.m: -------------------------------------------------------------------------------- 1 | // 2 | // LLRouter+Crash.m 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #import "LLRouter+Crash.h" 25 | 26 | @implementation LLRouter (Crash) 27 | 28 | + (Class _Nullable)crashModelClass { 29 | return NSClassFromString(@"LLCrashModel"); 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Pods/LLDebugTool/LLDebugTool/LLDebug.h: -------------------------------------------------------------------------------- 1 | // 2 | // LLDebug.h 3 | // 4 | // Copyright (c) 2018 LLDebugTool Software Foundation (https://github.com/HDB-Li/LLDebugTool) 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in all 14 | // copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | // SOFTWARE. 23 | 24 | #ifndef LLDebug_h 25 | #define LLDebug_h 26 | 27 | #import "LLConfig.h" 28 | #import "LLDebugTool.h" 29 | #import "LLDebugToolMacros.h" 30 | 31 | #endif /* LLDebug_h */ 32 | -------------------------------------------------------------------------------- /Pods/Moya/License.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-present Artsy, Ash Furrow 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/AnyEncodable.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct AnyEncodable: Encodable { 4 | 5 | private let encodable: Encodable 6 | 7 | public init(_ encodable: Encodable) { 8 | self.encodable = encodable 9 | } 10 | 11 | func encode(to encoder: Encoder) throws { 12 | try encodable.encode(to: encoder) 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Cancellable.swift: -------------------------------------------------------------------------------- 1 | /// Protocol to define the opaque type returned from a request. 2 | public protocol Cancellable { 3 | 4 | /// A Boolean value stating whether a request is cancelled. 5 | var isCancelled: Bool { get } 6 | 7 | /// Cancels the represented request. 8 | func cancel() 9 | } 10 | 11 | internal class CancellableWrapper: Cancellable { 12 | internal var innerCancellable: Cancellable = SimpleCancellable() 13 | 14 | var isCancelled: Bool { return innerCancellable.isCancelled } 15 | 16 | internal func cancel() { 17 | innerCancellable.cancel() 18 | } 19 | } 20 | 21 | internal class SimpleCancellable: Cancellable { 22 | var isCancelled = false 23 | func cancel() { 24 | isCancelled = true 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Image.swift: -------------------------------------------------------------------------------- 1 | #if os(iOS) || os(watchOS) || os(tvOS) 2 | import UIKit.UIImage 3 | public typealias ImageType = UIImage 4 | #elseif os(OSX) 5 | import AppKit.NSImage 6 | public typealias ImageType = NSImage 7 | #endif 8 | 9 | /// An alias for the SDK's image type. 10 | public typealias Image = ImageType 11 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MoyaProvider+Defaults.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | /// These functions are default mappings to `MoyaProvider`'s properties: endpoints, requests, manager, etc. 4 | public extension MoyaProvider { 5 | public final class func defaultEndpointMapping(for target: Target) -> Endpoint { 6 | return Endpoint( 7 | url: URL(target: target).absoluteString, 8 | sampleResponseClosure: { .networkResponse(200, target.sampleData) }, 9 | method: target.method, 10 | task: target.task, 11 | httpHeaderFields: target.headers 12 | ) 13 | } 14 | 15 | public final class func defaultRequestMapping(for endpoint: Endpoint, closure: RequestResultClosure) { 16 | do { 17 | let urlRequest = try endpoint.urlRequest() 18 | closure(.success(urlRequest)) 19 | } catch MoyaError.requestMapping(let url) { 20 | closure(.failure(MoyaError.requestMapping(url))) 21 | } catch MoyaError.parameterEncoding(let error) { 22 | closure(.failure(MoyaError.parameterEncoding(error))) 23 | } catch { 24 | closure(.failure(MoyaError.underlying(error, nil))) 25 | } 26 | } 27 | 28 | public final class func defaultAlamofireManager() -> Manager { 29 | let configuration = URLSessionConfiguration.default 30 | configuration.httpAdditionalHeaders = Manager.defaultHTTPHeaders 31 | 32 | let manager = Manager(configuration: configuration) 33 | manager.startRequestsImmediately = false 34 | return manager 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/MultiTarget.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | /// A `TargetType` used to enable `MoyaProvider` to process multiple `TargetType`s. 4 | public enum MultiTarget: TargetType { 5 | /// The embedded `TargetType`. 6 | case target(TargetType) 7 | 8 | /// Initializes a `MultiTarget`. 9 | public init(_ target: TargetType) { 10 | self = MultiTarget.target(target) 11 | } 12 | 13 | /// The embedded target's base `URL`. 14 | public var path: String { 15 | return target.path 16 | } 17 | 18 | /// The baseURL of the embedded target. 19 | public var baseURL: URL { 20 | return target.baseURL 21 | } 22 | 23 | /// The HTTP method of the embedded target. 24 | public var method: Moya.Method { 25 | return target.method 26 | } 27 | 28 | /// The sampleData of the embedded target. 29 | public var sampleData: Data { 30 | return target.sampleData 31 | } 32 | 33 | /// The `Task` of the embedded target. 34 | public var task: Task { 35 | return target.task 36 | } 37 | 38 | /// The `ValidationType` of the embedded target. 39 | public var validationType: ValidationType { 40 | return target.validationType 41 | } 42 | 43 | /// The headers of the embedded target. 44 | public var headers: [String: String]? { 45 | return target.headers 46 | } 47 | 48 | /// The embedded `TargetType`. 49 | public var target: TargetType { 50 | switch self { 51 | case .target(let target): return target 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugins/CredentialsPlugin.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Result 3 | 4 | /// Provides each request with optional URLCredentials. 5 | public final class CredentialsPlugin: PluginType { 6 | 7 | public typealias CredentialClosure = (TargetType) -> URLCredential? 8 | let credentialsClosure: CredentialClosure 9 | 10 | /// Initializes a CredentialsPlugin. 11 | public init(credentialsClosure: @escaping CredentialClosure) { 12 | self.credentialsClosure = credentialsClosure 13 | } 14 | 15 | // MARK: Plugin 16 | 17 | public func willSend(_ request: RequestType, target: TargetType) { 18 | if let credentials = credentialsClosure(target) { 19 | _ = request.authenticate(usingCredential: credentials) 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/Plugins/NetworkActivityPlugin.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Result 3 | 4 | /// Network activity change notification type. 5 | public enum NetworkActivityChangeType { 6 | case began, ended 7 | } 8 | 9 | /// Notify a request's network activity changes (request begins or ends). 10 | public final class NetworkActivityPlugin: PluginType { 11 | 12 | public typealias NetworkActivityClosure = (_ change: NetworkActivityChangeType, _ target: TargetType) -> Void 13 | let networkActivityClosure: NetworkActivityClosure 14 | 15 | /// Initializes a NetworkActivityPlugin. 16 | public init(networkActivityClosure: @escaping NetworkActivityClosure) { 17 | self.networkActivityClosure = networkActivityClosure 18 | } 19 | 20 | // MARK: Plugin 21 | 22 | /// Called by the provider as soon as the request is about to start 23 | public func willSend(_ request: RequestType, target: TargetType) { 24 | networkActivityClosure(.began, target) 25 | } 26 | 27 | /// Called by the provider as soon as a response arrives, even if the request is canceled. 28 | public func didReceive(_ result: Result, target: TargetType) { 29 | networkActivityClosure(.ended, target) 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/TargetType.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | /// The protocol used to define the specifications necessary for a `MoyaProvider`. 4 | public protocol TargetType { 5 | 6 | /// The target's base `URL`. 7 | var baseURL: URL { get } 8 | 9 | /// The path to be appended to `baseURL` to form the full `URL`. 10 | var path: String { get } 11 | 12 | /// The HTTP method used in the request. 13 | var method: Moya.Method { get } 14 | 15 | /// Provides stub data for use in testing. 16 | var sampleData: Data { get } 17 | 18 | /// The type of HTTP task to be performed. 19 | var task: Task { get } 20 | 21 | /// The type of validation to perform on the request. Default is `.none`. 22 | var validationType: ValidationType { get } 23 | 24 | /// The headers to be used in the request. 25 | var headers: [String: String]? { get } 26 | } 27 | 28 | public extension TargetType { 29 | 30 | /// The type of validation to perform on the request. Default is `.none`. 31 | var validationType: ValidationType { 32 | return .none 33 | } 34 | } 35 | 36 | // MARK: - Deprecated 37 | 38 | extension TargetType { 39 | @available(*, deprecated: 11.0, message: 40 | "TargetType's validate property has been deprecated in 11.0. Please use validationType: ValidationType.") 41 | var validate: Bool { 42 | return false 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/URL+Moya.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public extension URL { 4 | 5 | /// Initialize URL from Moya's `TargetType`. 6 | init(target: T) { 7 | // When a TargetType's path is empty, URL.appendingPathComponent may introduce trailing /, which may not be wanted in some cases 8 | // See: https://github.com/Moya/Moya/pull/1053 9 | // And: https://github.com/Moya/Moya/issues/1049 10 | if target.path.isEmpty { 11 | self = target.baseURL 12 | } else { 13 | self = target.baseURL.appendingPathComponent(target.path) 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/URLRequest+Encoding.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | internal extension URLRequest { 4 | 5 | mutating func encoded(encodable: Encodable, encoder: JSONEncoder = JSONEncoder()) throws -> URLRequest { 6 | do { 7 | let encodable = AnyEncodable(encodable) 8 | httpBody = try encoder.encode(encodable) 9 | 10 | let contentTypeHeaderName = "Content-Type" 11 | if value(forHTTPHeaderField: contentTypeHeaderName) == nil { 12 | setValue("application/json", forHTTPHeaderField: contentTypeHeaderName) 13 | } 14 | 15 | return self 16 | } catch { 17 | throw MoyaError.encodableMapping(error) 18 | } 19 | } 20 | 21 | func encoded(parameters: [String: Any], parameterEncoding: ParameterEncoding) throws -> URLRequest { 22 | do { 23 | return try parameterEncoding.encode(self, with: parameters) 24 | } catch { 25 | throw MoyaError.parameterEncoding(error) 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Pods/Moya/Sources/Moya/ValidationType.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | /// Represents the status codes to validate through Alamofire. 4 | public enum ValidationType { 5 | 6 | /// No validation. 7 | case none 8 | 9 | /// Validate success codes (only 2xx). 10 | case successCodes 11 | 12 | /// Validate success codes and redirection codes (only 2xx and 3xx). 13 | case successAndRedirectCodes 14 | 15 | /// Validate only the given status codes. 16 | case customCodes([Int]) 17 | 18 | /// The list of HTTP status codes to validate. 19 | var statusCodes: [Int] { 20 | switch self { 21 | case .successCodes: 22 | return Array(200..<300) 23 | case .successAndRedirectCodes: 24 | return Array(200..<400) 25 | case .customCodes(let codes): 26 | return codes 27 | case .none: 28 | return [] 29 | } 30 | } 31 | } 32 | 33 | extension ValidationType: Equatable { 34 | 35 | public static func == (lhs: ValidationType, rhs: ValidationType) -> Bool { 36 | switch (lhs, rhs) { 37 | case (.none, .none), 38 | (.successCodes, .successCodes), 39 | (.successAndRedirectCodes, .successAndRedirectCodes): 40 | return true 41 | case (.customCodes(let code1), .customCodes(let code2)): 42 | return code1 == code2 43 | default: 44 | return false 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /Pods/Result/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Rob Rix 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 4.7.3 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Alamofire : NSObject 3 | @end 4 | @implementation PodsDummy_Alamofire 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double AlamofireVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- 1 | framework module Alamofire { 2 | umbrella header "Alamofire-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Alamofire 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Alamofire 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 2.7.5 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FMDB : NSObject 3 | @end 4 | @implementation PodsDummy_FMDB 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FMDatabase.h" 14 | #import "FMDatabaseAdditions.h" 15 | #import "FMDatabasePool.h" 16 | #import "FMDatabaseQueue.h" 17 | #import "FMDB.h" 18 | #import "FMResultSet.h" 19 | 20 | FOUNDATION_EXPORT double FMDBVersionNumber; 21 | FOUNDATION_EXPORT const unsigned char FMDBVersionString[]; 22 | 23 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.modulemap: -------------------------------------------------------------------------------- 1 | framework module FMDB { 2 | umbrella header "FMDB-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FMDB 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FMDB 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/LLDebugTool/LLDebugTool-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.3.8 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/LLDebugTool/LLDebugTool-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_LLDebugTool : NSObject 3 | @end 4 | @implementation PodsDummy_LLDebugTool 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/LLDebugTool/LLDebugTool-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/LLDebugTool/LLDebugTool.modulemap: -------------------------------------------------------------------------------- 1 | framework module LLDebugTool { 2 | umbrella header "LLDebugTool-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/LLDebugTool/LLDebugTool.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LLDEBUGTOOL_APP_INFO=1 LLDEBUGTOOL_CRASH=1 LLDEBUGTOOL_HIERARCHY=1 LLDEBUGTOOL_HTML=1 LLDEBUGTOOL_LOCATION=1 LLDEBUGTOOL_LOG=1 LLDEBUGTOOL_MAGNIFIER=1 LLDEBUGTOOL_NETWORK=1 LLDEBUGTOOL_RULER=1 LLDEBUGTOOL_SANDBOX=1 LLDEBUGTOOL_SCREENSHOT=1 LLDEBUGTOOL_SHORT_CUT=1 LLDEBUGTOOL_WIDGET_BORDER=1 4 | OTHER_LDFLAGS = $(inherited) -framework "AVKit" -framework "CoreLocation" -framework "CoreTelephony" -framework "MapKit" -framework "Photos" -framework "QuickLook" -framework "SystemConfiguration" -framework "WebKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/LLDebugTool 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 11.0.2 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Moya : NSObject 3 | @end 4 | @implementation PodsDummy_Moya 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double MoyaVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char MoyaVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya.modulemap: -------------------------------------------------------------------------------- 1 | framework module Moya { 2 | umbrella header "Moya-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Moya/Moya.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Moya 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "Foundation" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Moya 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemo/Pods-LLDebugToolSwiftDemo-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemo/Pods-LLDebugToolSwiftDemo-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LLDebugToolSwiftDemo : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LLDebugToolSwiftDemo 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemo/Pods-LLDebugToolSwiftDemo-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_LLDebugToolSwiftDemoVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LLDebugToolSwiftDemoVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemo/Pods-LLDebugToolSwiftDemo.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool/LLDebugTool.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" -framework "AVKit" -framework "Alamofire" -framework "CoreLocation" -framework "CoreTelephony" -framework "FMDB" -framework "Foundation" -framework "LLDebugTool" -framework "MapKit" -framework "Moya" -framework "Photos" -framework "QuickLook" -framework "Result" -framework "SystemConfiguration" -framework "WebKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemo/Pods-LLDebugToolSwiftDemo.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LLDebugToolSwiftDemo { 2 | umbrella header "Pods-LLDebugToolSwiftDemo-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemo/Pods-LLDebugToolSwiftDemo.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool/LLDebugTool.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" -framework "AVKit" -framework "Alamofire" -framework "CoreLocation" -framework "CoreTelephony" -framework "FMDB" -framework "Foundation" -framework "LLDebugTool" -framework "MapKit" -framework "Moya" -framework "Photos" -framework "QuickLook" -framework "Result" -framework "SystemConfiguration" -framework "WebKit" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LLDebugToolSwiftDemoTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LLDebugToolSwiftDemoTests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_LLDebugToolSwiftDemoTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LLDebugToolSwiftDemoTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool/LLDebugTool.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" -framework "AVKit" -framework "Alamofire" -framework "CoreLocation" -framework "CoreTelephony" -framework "FMDB" -framework "Foundation" -framework "LLDebugTool" -framework "MapKit" -framework "Moya" -framework "Photos" -framework "QuickLook" -framework "Result" -framework "SystemConfiguration" -framework "WebKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LLDebugToolSwiftDemoTests { 2 | umbrella header "Pods-LLDebugToolSwiftDemoTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoTests/Pods-LLDebugToolSwiftDemoTests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool/LLDebugTool.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" -framework "AVKit" -framework "Alamofire" -framework "CoreLocation" -framework "CoreTelephony" -framework "FMDB" -framework "Foundation" -framework "LLDebugTool" -framework "MapKit" -framework "Moya" -framework "Photos" -framework "QuickLook" -framework "Result" -framework "SystemConfiguration" -framework "WebKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LLDebugToolSwiftDemoUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LLDebugToolSwiftDemoUITests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_LLDebugToolSwiftDemoUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LLDebugToolSwiftDemoUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool/LLDebugTool.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" -framework "AVKit" -framework "Alamofire" -framework "CoreLocation" -framework "CoreTelephony" -framework "FMDB" -framework "Foundation" -framework "LLDebugTool" -framework "MapKit" -framework "Moya" -framework "Photos" -framework "QuickLook" -framework "Result" -framework "SystemConfiguration" -framework "WebKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LLDebugToolSwiftDemoUITests { 2 | umbrella header "Pods-LLDebugToolSwiftDemoUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LLDebugToolSwiftDemoUITests/Pods-LLDebugToolSwiftDemoUITests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool" "${PODS_CONFIGURATION_BUILD_DIR}/Moya" "${PODS_CONFIGURATION_BUILD_DIR}/Result" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB/FMDB.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LLDebugTool/LLDebugTool.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -l"sqlite3" -framework "AVKit" -framework "Alamofire" -framework "CoreLocation" -framework "CoreTelephony" -framework "FMDB" -framework "Foundation" -framework "LLDebugTool" -framework "MapKit" -framework "Moya" -framework "Photos" -framework "QuickLook" -framework "Result" -framework "SystemConfiguration" -framework "WebKit" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 3.2.4 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Result : NSObject 3 | @end 4 | @implementation PodsDummy_Result 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ResultVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ResultVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Result/Result.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Result 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Result 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | --------------------------------------------------------------------------------