Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.03 KB

README.md

File metadata and controls

52 lines (37 loc) · 1.03 KB

SwiftUIViewTypeInspection

SwiftUIViewTypeInspection provides helpers methods on SwiftUI.View to inspect its real concrete type.

View.inspectType() -> Self

Print its real concrete type representation to the standard output stream.

Example:

import SwiftUIViewTypeInspection

struct MyView: View {
  var body: some View {
    HStack {
      Text("Hello, ")
      Text("world!")
    }
    .inspectType() // prints "HStack<TupleView<(Text, Text)>>"
  }
}

View.inspectType<Target: TextOutputStream>(to output: inout Target) -> Self

Store its real concrete type representation to the target stream.

Tip: the String type conforms TextOutputStream.

Example:

import SwiftUIViewTypeInspection

var output: String = ""

struct MyView: View {
  var body: some View {
    HStack {
      Text("Hello, ")
      Text("world!")
    }
    .inspectType(to: &output) // stores "HStack<TupleView<(Text, Text)>>\n"
  }
}

Credits

Thinking in SwiftUI, page 10, 2020-12-15 ver.