What's the equivalent of NSTextView in SwiftUI?

Asked on 2024-07-30

1 search

The equivalent of NSTextView in SwiftUI is the TextEditor view. TextEditor provides a way to display and edit multiline, scrollable text content in SwiftUI, similar to how NSTextView works in AppKit.

For more details on text handling in SwiftUI, you can refer to the session What’s new in SwiftUI at the 15:06 mark, where programmatic access to and control of text selection within text editing controls is discussed.

What's the equivalent of NSTextView in SwiftUI? | Ask WWDC