Skip to content

Commit f30eea5

Browse files
authored
Update README.md (#91)
1 parent c38e70e commit f30eea5

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,27 +49,33 @@ Introspection
4949

5050
SwiftUI | UIKit | AppKit | Introspect
5151
--- | --- | --- | ---
52-
List | UITableView | NSTableView | `.introspectTableView()`
53-
ScrollView | UIScrollView | NSScrollView | `.introspectScrollView()`
54-
NavigationView | UINavigationController | _N/A_ | `.introspectNavigationController()`
52+
NavigationView (StackNavigationViewStyle) | UINavigationController | _N/A_ | `.introspectNavigationController()`
53+
NavigationView (DoubleColumnNavigationViewStyle) | UISplitViewController | _N/A_ | `.introspectSplitViewController()`
5554
_Any embedded view_ | UIViewController | _N/A_ | `.introspectViewController()`
56-
TabView | UITabBarController | _N/A_ | `.introspectTabBarController()`
55+
ScrollView | UIScrollView | NSScrollView | `.introspectScrollView()`
56+
List | UITableView | NSTableView | `.introspectTableView()`
57+
View in List | UITableViewCell | NSTableCellView | `introspectTableViewCell()`
58+
TabView | UITabBarController | NSTabView | `.introspectTabBarController()` (iOS) <br/> `.introspectTabView()` (macOS)
5759
TextField | UITextField | NSTextField | `.introspectTextField()`
58-
Toggle | UISwitch | N/A | `.introspectSwitch()`
60+
Toggle | UISwitch | _N/A_ | `.introspectSwitch()`
5961
Slider | UISlider | NSSlider | `.introspectSlider()`
6062
Stepper | UIStepper | NSStepper | `.introspectStepper()`
6163
DatePicker | UIDatePicker | NSDatePicker | `.introspectDatePicker()`
6264
Picker (SegmentedPickerStyle) | UISegmentedControl | NSSegmentedControl | `.introspectSegmentedControl()`
65+
Button | _N/A_ | NSButton | `.introspectButton()`
66+
ColorPicker | UIColorWell | NSColorWell | `.introspectColorWell()`
67+
TabView | UITextView | NSTextView | `.introspectTextView()`
68+
6369

6470
**Missing an element?** Please [create an issue](https://github.com/timbersoftware/SwiftUI-Introspect/issues). As a temporary solution, you can [implement your own selector](#implement-your-own-selector).
6571

6672
### Cannot implement
6773

68-
SwiftUI | Why
69-
--- | ---
70-
Text | Not a UILabel
71-
Image | Not a UIImageView
72-
Button | Not a UIButton
74+
SwiftUI | Affected Frameworks | Why
75+
--- | --- | ---
76+
Text | UIKit, AppKit | Not a UILabel / NSLabel
77+
Image | UIKit, AppKit | Not a UIImageView / NSImageView
78+
Button | UIKit | Not a UIButton
7379

7480
Examples
7581
--------

0 commit comments

Comments
 (0)