LNViewHierarchyDumper

1.3.1

Dump your view hierarchies programmatically to Xcode 12 and above compatible view hierarchy file archives.
LeoNatan/LNViewHierarchyDumper

What's New

v1.3.1

2023-08-03T14:52:30Z
  • Fixes to the Xcode project of the framework (if used outside of Swift Package Manager)
  • Fixed a few warnings

LNViewHierarchyDumper

A framework for programmatically dumping the view hierarchy of your app into an Xcode 12 and above compatible view hierarchy file archive.

GitHub release GitHub stars GitHub license PayPal Donation Button

GitHub issues GitHub contributors

The framework supports dumping the view hierarchy of apps running on iOS, tvOS and watchOS simulators, hardware devices with developer image mounted, and macOS and Catalyst with Xcode installed. Under unsupported targets or environments, the frameworks fails silently and returns an error.

This framework uses Xcode's internal DebugHierarchyFoundation framework, and is not AppStore safe, thus you should use with care, only linking against it in development/testing scenarios/builds. Since the framework requires developer tooling (developer image mounted on iOS hardware; Xcode on macOS), there would be little benefit from having this framework in production anyway.

Deploying the framework conditionally is a complex topic, beyond the scope of this README. One strategy can be to link the dynamic library with UI testing project, and launch your app with the DYLD_INSERT_LIBRARIES environment variable, pointing to the LNViewHierarchyDumper framework.

Using the framework is very easy:

import LNViewHierarchyDumper

//...

let url = //URL to a directory
try LNViewHierarchyDumper.shared.dumpViewHierarchy(to: url)

Description

  • Swift Tools 5.5.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Mar 14 2024 10:39:23 GMT-0900 (Hawaii-Aleutian Daylight Time)