├── .github └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── Example ├── LayoutInspectorExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── LayoutInspectorExample.xcscheme ├── LayoutInspectorExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── LayoutInspectorExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── mario.imageset │ │ │ ├── Contents.json │ │ │ └── Small-mario.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ChangeAutoTriggerProtocol.swift │ ├── ControlsDemoViewController.swift │ ├── Info.plist │ └── TableDemoViewController.swift ├── LayoutInspectorExampleTests │ ├── Domain Layer Tests │ │ └── HierarchyBuilderTests.swift │ ├── Info.plist │ ├── LayoutInspectorFacadeTests │ │ └── LayoutInspectorFacadeTests.swift │ └── UI Layer │ │ ├── AttributeViewModelTests.swift │ │ ├── LayoutInspectorContainerViewControllerTests │ │ ├── LayoutInspectorContainerViewControllerTests.swift │ │ └── LayoutInspectorViewOutputMock.swift │ │ ├── LayoutInspectorPresenterTests │ │ ├── LayoutInspectorPresenterDelegateMock.swift │ │ └── LayoutInspectorPresenterTests.swift │ │ ├── RenderingTreeBuilderTests.swift │ │ ├── SceneViewManagerTests.swift │ │ └── SceneWidgetViewControllerTests │ │ ├── SceneViewManagerDelegateMock.swift │ │ └── SceneWidgetViewControllerTests.swift ├── LayoutInspectorExampleUITests │ ├── Base │ │ ├── LIUITestCase.swift │ │ ├── XCTestCase+Extensions.swift │ │ └── XCUIApplication+Extensions.swift │ ├── ControlsScreenLayoutInspectionTests.swift │ ├── Info.plist │ ├── ScreenObjects │ │ ├── ControlsScreenObject.swift │ │ ├── LayoutInspectorContainerScreenObject.swift │ │ ├── ScreenObject.swift │ │ ├── TabScreenObject.swift │ │ └── TableScreenObject.swift │ └── TableScreenLayoutInspectionTests.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ └── Public │ │ └── LayoutInspector │ │ ├── LayoutInspector-umbrella.h │ │ └── LayoutInspector.modulemap │ ├── Local Podspecs │ └── LayoutInspector.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── LayoutInspector │ ├── LayoutInspector-dummy.m │ ├── LayoutInspector-prefix.pch │ ├── LayoutInspector-umbrella.h │ ├── LayoutInspector.modulemap │ └── LayoutInspector.xcconfig │ ├── Pods-LayoutInspectorExample │ ├── Pods-LayoutInspectorExample-acknowledgements.markdown │ ├── Pods-LayoutInspectorExample-acknowledgements.plist │ ├── Pods-LayoutInspectorExample-dummy.m │ ├── Pods-LayoutInspectorExample-frameworks.sh │ ├── Pods-LayoutInspectorExample-resources-Debug-input-files.xcfilelist │ ├── Pods-LayoutInspectorExample-resources-Debug-output-files.xcfilelist │ ├── Pods-LayoutInspectorExample-resources-Release-input-files.xcfilelist │ ├── Pods-LayoutInspectorExample-resources-Release-output-files.xcfilelist │ ├── Pods-LayoutInspectorExample-resources.sh │ ├── Pods-LayoutInspectorExample-umbrella.h │ ├── Pods-LayoutInspectorExample.debug.xcconfig │ ├── Pods-LayoutInspectorExample.modulemap │ └── Pods-LayoutInspectorExample.release.xcconfig │ ├── Pods-LayoutInspectorExampleTests │ ├── Pods-LayoutInspectorExampleTests-acknowledgements.markdown │ ├── Pods-LayoutInspectorExampleTests-acknowledgements.plist │ ├── Pods-LayoutInspectorExampleTests-dummy.m │ ├── Pods-LayoutInspectorExampleTests-frameworks.sh │ ├── Pods-LayoutInspectorExampleTests-resources.sh │ ├── Pods-LayoutInspectorExampleTests.debug.xcconfig │ └── Pods-LayoutInspectorExampleTests.release.xcconfig │ └── Pods-LayoutInspectorExampleUITests │ ├── Pods-LayoutInspectorExampleUITests-acknowledgements.markdown │ ├── Pods-LayoutInspectorExampleUITests-acknowledgements.plist │ ├── Pods-LayoutInspectorExampleUITests-dummy.m │ ├── Pods-LayoutInspectorExampleUITests-frameworks.sh │ ├── Pods-LayoutInspectorExampleUITests-resources.sh │ ├── Pods-LayoutInspectorExampleUITests.debug.xcconfig │ └── Pods-LayoutInspectorExampleUITests.release.xcconfig ├── LICENSE ├── LayoutInspector.podspec ├── LayoutInspector ├── Assets │ ├── .gitkeep │ └── LayoutInspectorAssets.xcassets │ │ ├── Contents.json │ │ ├── checkeredPattern.imageset │ │ ├── Contents.json │ │ └── Screen Shot 2019-01-04 at 11.14.20 PM.png │ │ ├── closeIcon.imageset │ │ ├── Contents.json │ │ └── dialog_close_1342689.png │ │ ├── resetIcon.imageset │ │ ├── Contents.json │ │ └── collect.png │ │ └── transparent_view_image.imageset │ │ ├── 100x100.png │ │ └── Contents.json ├── Classes │ ├── .gitkeep │ ├── Domain Layer │ │ ├── HierarchyBuilder.swift │ │ ├── Utils │ │ │ ├── Bundle+Extension.swift │ │ │ ├── Segue.swift │ │ │ ├── String+Extension.swift │ │ │ ├── UICollectionView+Extention.swift │ │ │ ├── UIColor+Extension.swift │ │ │ ├── UIFont+Extension.swift │ │ │ ├── UIView+Extension.swift │ │ │ └── UtilsProtocols.swift │ │ ├── ViewControllerFactory.swift │ │ └── ViewDescription.swift │ ├── LayoutInspector.swift │ └── UI Layer │ │ ├── AttributesWidget │ │ ├── AttributeViewModel.swift │ │ ├── AttributesManagerInterfaces.swift │ │ ├── AttributesWidgetViewController.swift │ │ ├── ColorAttributeCell.swift │ │ ├── ObjectAttributesManager.swift │ │ └── TextAttributeCell.swift │ │ ├── LayoutInspectorContainer │ │ ├── DebugNode.swift │ │ ├── LayoutInspectorContainerInterfaces.swift │ │ ├── LayoutInspectorContainerViewController.swift │ │ ├── LayoutInspectorPresenter.swift │ │ ├── RenderingTreeBuilder.swift │ │ ├── RenderingView.swift │ │ └── ViewMetadata.swift │ │ ├── MenuWidget │ │ ├── MenuWidgetInterfaces.swift │ │ └── MenuWidgetViewController.swift │ │ └── SceneWidget │ │ ├── SceneViewManager.swift │ │ ├── SceneViewManagerInterfaces.swift │ │ ├── SceneWidgetInterfaces.swift │ │ └── SceneWidgetViewController.swift └── LayoutInspector.storyboard ├── LayoutInspector_demo.gif ├── README.md └── _Pods.xcodeproj /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LayoutInspectorExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LayoutInspectorExample.xcodeproj/xcshareddata/xcschemes/LayoutInspectorExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample.xcodeproj/xcshareddata/xcschemes/LayoutInspectorExample.xcscheme -------------------------------------------------------------------------------- /Example/LayoutInspectorExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LayoutInspectorExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/LayoutInspectorExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Assets.xcassets/mario.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Assets.xcassets/mario.imageset/Contents.json -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Assets.xcassets/mario.imageset/Small-mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Assets.xcassets/mario.imageset/Small-mario.png -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/ChangeAutoTriggerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/ChangeAutoTriggerProtocol.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/ControlsDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/ControlsDemoViewController.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/Info.plist -------------------------------------------------------------------------------- /Example/LayoutInspectorExample/TableDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExample/TableDemoViewController.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/Domain Layer Tests/HierarchyBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/Domain Layer Tests/HierarchyBuilderTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/LayoutInspectorFacadeTests/LayoutInspectorFacadeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/LayoutInspectorFacadeTests/LayoutInspectorFacadeTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/AttributeViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/AttributeViewModelTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorContainerViewControllerTests/LayoutInspectorContainerViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorContainerViewControllerTests/LayoutInspectorContainerViewControllerTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorContainerViewControllerTests/LayoutInspectorViewOutputMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorContainerViewControllerTests/LayoutInspectorViewOutputMock.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorPresenterTests/LayoutInspectorPresenterDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorPresenterTests/LayoutInspectorPresenterDelegateMock.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorPresenterTests/LayoutInspectorPresenterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/LayoutInspectorPresenterTests/LayoutInspectorPresenterTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/RenderingTreeBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/RenderingTreeBuilderTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/SceneViewManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/SceneViewManagerTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/SceneWidgetViewControllerTests/SceneViewManagerDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/SceneWidgetViewControllerTests/SceneViewManagerDelegateMock.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleTests/UI Layer/SceneWidgetViewControllerTests/SceneWidgetViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleTests/UI Layer/SceneWidgetViewControllerTests/SceneWidgetViewControllerTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/Base/LIUITestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/Base/LIUITestCase.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/Base/XCTestCase+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/Base/XCTestCase+Extensions.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/Base/XCUIApplication+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/Base/XCUIApplication+Extensions.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/ControlsScreenLayoutInspectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/ControlsScreenLayoutInspectionTests.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/Info.plist -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/ScreenObjects/ControlsScreenObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/ScreenObjects/ControlsScreenObject.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/ScreenObjects/LayoutInspectorContainerScreenObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/ScreenObjects/LayoutInspectorContainerScreenObject.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/ScreenObjects/ScreenObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/ScreenObjects/ScreenObject.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/ScreenObjects/TabScreenObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/ScreenObjects/TabScreenObject.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/ScreenObjects/TableScreenObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/ScreenObjects/TableScreenObject.swift -------------------------------------------------------------------------------- /Example/LayoutInspectorExampleUITests/TableScreenLayoutInspectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/LayoutInspectorExampleUITests/TableScreenLayoutInspectionTests.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LayoutInspector/LayoutInspector-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Headers/Public/LayoutInspector/LayoutInspector-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LayoutInspector/LayoutInspector.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Headers/Public/LayoutInspector/LayoutInspector.modulemap -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LayoutInspector.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Local Podspecs/LayoutInspector.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutInspector/LayoutInspector-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/LayoutInspector/LayoutInspector-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutInspector/LayoutInspector-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/LayoutInspector/LayoutInspector-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutInspector/LayoutInspector-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/LayoutInspector/LayoutInspector-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutInspector/LayoutInspector.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/LayoutInspector/LayoutInspector.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LayoutInspector/LayoutInspector.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/LayoutInspector/LayoutInspector.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExample/Pods-LayoutInspectorExample.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleTests/Pods-LayoutInspectorExampleTests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/Example/Pods/Target Support Files/Pods-LayoutInspectorExampleUITests/Pods-LayoutInspectorExampleUITests.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LICENSE -------------------------------------------------------------------------------- /LayoutInspector.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector.podspec -------------------------------------------------------------------------------- /LayoutInspector/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/checkeredPattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/checkeredPattern.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/checkeredPattern.imageset/Screen Shot 2019-01-04 at 11.14.20 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/checkeredPattern.imageset/Screen Shot 2019-01-04 at 11.14.20 PM.png -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/closeIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/closeIcon.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/closeIcon.imageset/dialog_close_1342689.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/closeIcon.imageset/dialog_close_1342689.png -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/resetIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/resetIcon.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/resetIcon.imageset/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/resetIcon.imageset/collect.png -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/transparent_view_image.imageset/100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/transparent_view_image.imageset/100x100.png -------------------------------------------------------------------------------- /LayoutInspector/Assets/LayoutInspectorAssets.xcassets/transparent_view_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Assets/LayoutInspectorAssets.xcassets/transparent_view_image.imageset/Contents.json -------------------------------------------------------------------------------- /LayoutInspector/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/HierarchyBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/HierarchyBuilder.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/Bundle+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/Bundle+Extension.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/Segue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/Segue.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/String+Extension.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/UICollectionView+Extention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/UICollectionView+Extention.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/UIColor+Extension.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/UIFont+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/UIFont+Extension.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/UIView+Extension.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/Utils/UtilsProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/Utils/UtilsProtocols.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/ViewControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/ViewControllerFactory.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/Domain Layer/ViewDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/Domain Layer/ViewDescription.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/LayoutInspector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/LayoutInspector.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/AttributesWidget/AttributeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/AttributesWidget/AttributeViewModel.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/AttributesWidget/AttributesManagerInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/AttributesWidget/AttributesManagerInterfaces.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/AttributesWidget/AttributesWidgetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/AttributesWidget/AttributesWidgetViewController.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/AttributesWidget/ColorAttributeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/AttributesWidget/ColorAttributeCell.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/AttributesWidget/ObjectAttributesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/AttributesWidget/ObjectAttributesManager.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/AttributesWidget/TextAttributeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/AttributesWidget/TextAttributeCell.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/DebugNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/DebugNode.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/LayoutInspectorContainerInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/LayoutInspectorContainerInterfaces.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/LayoutInspectorContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/LayoutInspectorContainerViewController.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/LayoutInspectorPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/LayoutInspectorPresenter.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/RenderingTreeBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/RenderingTreeBuilder.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/RenderingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/RenderingView.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/ViewMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/LayoutInspectorContainer/ViewMetadata.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/MenuWidget/MenuWidgetInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/MenuWidget/MenuWidgetInterfaces.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/MenuWidget/MenuWidgetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/MenuWidget/MenuWidgetViewController.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/SceneWidget/SceneViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/SceneWidget/SceneViewManager.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/SceneWidget/SceneViewManagerInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/SceneWidget/SceneViewManagerInterfaces.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/SceneWidget/SceneWidgetInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/SceneWidget/SceneWidgetInterfaces.swift -------------------------------------------------------------------------------- /LayoutInspector/Classes/UI Layer/SceneWidget/SceneWidgetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/Classes/UI Layer/SceneWidget/SceneWidgetViewController.swift -------------------------------------------------------------------------------- /LayoutInspector/LayoutInspector.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector/LayoutInspector.storyboard -------------------------------------------------------------------------------- /LayoutInspector_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/LayoutInspector_demo.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isavynskyi/LayoutInspector/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------