├── .gitignore ├── Example-ObjC ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── Example-Swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── InAppViewDebugger.podspec ├── InAppViewDebugger.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ ├── Example-ObjC.xcscheme │ │ ├── Example-Swift.xcscheme │ │ └── InAppViewDebugger.xcscheme └── xcuserdata │ └── indragie.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── InAppViewDebugger ├── Assets.xcassets │ ├── Contents.json │ ├── DisclosureIndicator.imageset │ │ ├── Contents.json │ │ ├── Disclosure Indicator.png │ │ ├── Disclosure Indicator@2x.png │ │ └── Disclosure Indicator@3x.png │ ├── RangeSliderFill.imageset │ │ ├── Contents.json │ │ ├── fill.png │ │ ├── fill@2x.png │ │ └── fill@3x.png │ ├── RangeSliderLeftHandle.imageset │ │ ├── Contents.json │ │ ├── left_handle.png │ │ ├── left_handle@2x.png │ │ └── left_handle@3x.png │ ├── RangeSliderRightHandle.imageset │ │ ├── Contents.json │ │ ├── right_handle.png │ │ ├── right_handle@2x.png │ │ └── right_handle@3x.png │ └── RangeSliderTrack.imageset │ │ ├── Contents.json │ │ ├── track.png │ │ ├── track@2x.png │ │ └── track@3x.png ├── BUILD ├── Configuration.swift ├── Element.swift ├── HierarchyTableViewCell.swift ├── HierarchyTableViewController.swift ├── HierarchyViewConfiguration.swift ├── InAppViewDebugger.h ├── InAppViewDebugger.swift ├── Info.plist ├── ParallelLineView.swift ├── RangeSlider.swift ├── Snapshot.swift ├── SnapshotActionSheetUtils.swift ├── SnapshotView.swift ├── SnapshotViewConfiguration.swift ├── SnapshotViewController.swift ├── TreeTableViewDataSource.swift ├── VIewDebuggerViewController.swift ├── ViewControllerUtils.swift └── ViewElement.swift ├── LICENSE ├── Package.swift ├── README.md ├── WORKSPACE └── docs ├── Classes.html ├── Classes ├── Configuration.html ├── ElementLabel.html ├── ElementLabel │ └── Classification.html ├── HierarchyViewConfiguration.html ├── InAppViewDebugger.html ├── Snapshot.html ├── SnapshotViewConfiguration.html ├── SnapshotViewConfiguration │ └── HeaderAttributes.html └── ViewElement.html ├── Protocols.html ├── Protocols └── Element.html ├── badge.svg ├── css ├── highlight.css └── jazzy.css ├── docsets ├── InAppViewDebugger.docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── Configuration.html │ │ │ ├── ElementLabel.html │ │ │ ├── ElementLabel │ │ │ │ └── Classification.html │ │ │ ├── HierarchyViewConfiguration.html │ │ │ ├── InAppViewDebugger.html │ │ │ ├── Snapshot.html │ │ │ ├── SnapshotViewConfiguration.html │ │ │ ├── SnapshotViewConfiguration │ │ │ │ └── HeaderAttributes.html │ │ │ └── ViewElement.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ └── Element.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── gh.png │ │ │ └── spinner.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ └── search.json │ │ └── docSet.dsidx └── InAppViewDebugger.tgz ├── img ├── borders.gif ├── carat.png ├── dash.png ├── distance.gif ├── focus.gif ├── gh.png ├── headers.gif ├── iphone1.png ├── iphone2.png ├── main.png ├── slicing.gif └── spinner.gif ├── index.html ├── js ├── jazzy.js ├── jazzy.search.js ├── jquery.min.js ├── lunr.min.js └── typeahead.jquery.js ├── search.json └── undocumented.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/.gitignore -------------------------------------------------------------------------------- /Example-ObjC/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/AppDelegate.h -------------------------------------------------------------------------------- /Example-ObjC/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/AppDelegate.m -------------------------------------------------------------------------------- /Example-ObjC/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example-ObjC/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example-ObjC/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example-ObjC/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example-ObjC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/Info.plist -------------------------------------------------------------------------------- /Example-ObjC/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/ViewController.h -------------------------------------------------------------------------------- /Example-ObjC/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/ViewController.m -------------------------------------------------------------------------------- /Example-ObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-ObjC/main.m -------------------------------------------------------------------------------- /Example-Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Example-Swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example-Swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example-Swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example-Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/Info.plist -------------------------------------------------------------------------------- /Example-Swift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Example-Swift/ViewController.swift -------------------------------------------------------------------------------- /InAppViewDebugger.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.podspec -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/xcshareddata/xcschemes/Example-ObjC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/xcshareddata/xcschemes/Example-ObjC.xcscheme -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/xcshareddata/xcschemes/Example-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/xcshareddata/xcschemes/Example-Swift.xcscheme -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/xcshareddata/xcschemes/InAppViewDebugger.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/xcshareddata/xcschemes/InAppViewDebugger.xcscheme -------------------------------------------------------------------------------- /InAppViewDebugger.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger.xcodeproj/xcuserdata/indragie.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Contents.json -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Disclosure Indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Disclosure Indicator.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Disclosure Indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Disclosure Indicator@2x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Disclosure Indicator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/DisclosureIndicator.imageset/Disclosure Indicator@3x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/Contents.json -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/fill.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/fill@2x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderFill.imageset/fill@3x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/Contents.json -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/left_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/left_handle.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/left_handle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/left_handle@2x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/left_handle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderLeftHandle.imageset/left_handle@3x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/Contents.json -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/right_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/right_handle.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/right_handle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/right_handle@2x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/right_handle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderRightHandle.imageset/right_handle@3x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/Contents.json -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/track.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/track@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/track@2x.png -------------------------------------------------------------------------------- /InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/track@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Assets.xcassets/RangeSliderTrack.imageset/track@3x.png -------------------------------------------------------------------------------- /InAppViewDebugger/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/BUILD -------------------------------------------------------------------------------- /InAppViewDebugger/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Configuration.swift -------------------------------------------------------------------------------- /InAppViewDebugger/Element.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Element.swift -------------------------------------------------------------------------------- /InAppViewDebugger/HierarchyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/HierarchyTableViewCell.swift -------------------------------------------------------------------------------- /InAppViewDebugger/HierarchyTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/HierarchyTableViewController.swift -------------------------------------------------------------------------------- /InAppViewDebugger/HierarchyViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/HierarchyViewConfiguration.swift -------------------------------------------------------------------------------- /InAppViewDebugger/InAppViewDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/InAppViewDebugger.h -------------------------------------------------------------------------------- /InAppViewDebugger/InAppViewDebugger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/InAppViewDebugger.swift -------------------------------------------------------------------------------- /InAppViewDebugger/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Info.plist -------------------------------------------------------------------------------- /InAppViewDebugger/ParallelLineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/ParallelLineView.swift -------------------------------------------------------------------------------- /InAppViewDebugger/RangeSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/RangeSlider.swift -------------------------------------------------------------------------------- /InAppViewDebugger/Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/Snapshot.swift -------------------------------------------------------------------------------- /InAppViewDebugger/SnapshotActionSheetUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/SnapshotActionSheetUtils.swift -------------------------------------------------------------------------------- /InAppViewDebugger/SnapshotView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/SnapshotView.swift -------------------------------------------------------------------------------- /InAppViewDebugger/SnapshotViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/SnapshotViewConfiguration.swift -------------------------------------------------------------------------------- /InAppViewDebugger/SnapshotViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/SnapshotViewController.swift -------------------------------------------------------------------------------- /InAppViewDebugger/TreeTableViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/TreeTableViewDataSource.swift -------------------------------------------------------------------------------- /InAppViewDebugger/VIewDebuggerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/VIewDebuggerViewController.swift -------------------------------------------------------------------------------- /InAppViewDebugger/ViewControllerUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/ViewControllerUtils.swift -------------------------------------------------------------------------------- /InAppViewDebugger/ViewElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/InAppViewDebugger/ViewElement.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- 1 | workspace(name = "InAppViewDebugger") 2 | -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/Configuration.html -------------------------------------------------------------------------------- /docs/Classes/ElementLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/ElementLabel.html -------------------------------------------------------------------------------- /docs/Classes/ElementLabel/Classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/ElementLabel/Classification.html -------------------------------------------------------------------------------- /docs/Classes/HierarchyViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/HierarchyViewConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/InAppViewDebugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/InAppViewDebugger.html -------------------------------------------------------------------------------- /docs/Classes/Snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/Snapshot.html -------------------------------------------------------------------------------- /docs/Classes/SnapshotViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/SnapshotViewConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/SnapshotViewConfiguration/HeaderAttributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/SnapshotViewConfiguration/HeaderAttributes.html -------------------------------------------------------------------------------- /docs/Classes/ViewElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Classes/ViewElement.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/Protocols/Element.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/Configuration.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/ElementLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/ElementLabel.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/ElementLabel/Classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/ElementLabel/Classification.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/HierarchyViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/HierarchyViewConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/InAppViewDebugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/InAppViewDebugger.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/Snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/Snapshot.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/SnapshotViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/SnapshotViewConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/SnapshotViewConfiguration/HeaderAttributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/SnapshotViewConfiguration/HeaderAttributes.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/ViewElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Classes/ViewElement.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Protocols/Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/Protocols/Element.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/InAppViewDebugger.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/docsets/InAppViewDebugger.tgz -------------------------------------------------------------------------------- /docs/img/borders.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/borders.gif -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/distance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/distance.gif -------------------------------------------------------------------------------- /docs/img/focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/focus.gif -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/headers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/headers.gif -------------------------------------------------------------------------------- /docs/img/iphone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/iphone1.png -------------------------------------------------------------------------------- /docs/img/iphone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/iphone2.png -------------------------------------------------------------------------------- /docs/img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/main.png -------------------------------------------------------------------------------- /docs/img/slicing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/slicing.gif -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/InAppViewDebugger/HEAD/docs/undocumented.json --------------------------------------------------------------------------------