From b9147c0cfd8beb102fd4949de06e8f8429a8d37c Mon Sep 17 00:00:00 2001 From: Christopher Ethan Bonin Date: Tue, 5 Jan 2021 10:12:03 -0600 Subject: [PATCH] Update README.md I updated the class for creating a customized introspection. I noticed that it wasn't up to date with the classes you currently have implemented. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd3df5ff8..7ce8cd590 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ In case Introspect doesn't support the SwiftUI element that you're looking for, ```swift extension View { public func introspectTextField(customize: @escaping (UITextField) -> ()) -> some View { - return inject(IntrospectionView( + return inject(UIKitIntrospectionView( selector: { introspectionView in guard let viewHost = Introspect.findViewHost(from: introspectionView) else { return nil