我正在寻找在macOS的Swift UI中创建一个可编辑的多行文本框。我想创建一个语法突出显示的文本编辑器,所以它将是多行的,并在各行中更改样式。如果框架处于当前状态,这可能吗?我几乎在网上找不到有关它的任何文档。
答案 0 :(得分:0)
这很有用,这是我使用SwiftUI获取NSTextView的第一个解决方案:
import SwiftUI
import os
let uiLog = OSLog(subsystem: "com.visual-science.CryptiK", category: "UI")
class EditorCoordinator : NSObject, NSTextViewDelegate {
let textView: NSTextView;
let scrollView : NSScrollView
let text : Binding<NSAttributedString>
init(binding: Binding<NSAttributedString>) {
text = binding
textView = NSTextView(frame: .zero)
textView.autoresizingMask = [.height, .width]
textView.textStorage?.setAttributedString(text.wrappedValue)
textView.textColor = NSColor.textColor
scrollView = NSScrollView(frame: .zero)
scrollView.hasVerticalScroller = true
scrollView.autohidesScrollers = false
scrollView.autoresizingMask = [.height, .width]
scrollView.documentView = textView
super.init()
textView.delegate = self
}
func textDidChange(_ notification: Notification) {
switch notification.name {
case NSText.didChangeNotification :
text.wrappedValue = (notification.object as? NSTextView)?.textStorage ?? NSAttributedString(string: "")
default:
os_log(.error, log: uiLog, "Coordinator received unwanted notification")
}
}
}
struct DataTextEditorView: View, NSViewRepresentable {
typealias Coordinator = EditorCoordinator
typealias NSViewType = NSScrollView
let text : Binding<NSAttributedString>
func makeNSView(context: NSViewRepresentableContext<DataTextEditorView>) -> DataTextEditorView.NSViewType {
os_log(.info, log: uiLog, "%@", context.coordinator.scrollView)
return context.coordinator.scrollView
}
func updateNSView(_ nsView: NSScrollView, context: NSViewRepresentableContext<DataTextEditorView>) {
os_log(.debug, log: uiLog, "%@", context.coordinator.self)
os_log(.debug, log: uiLog, "%@", text.wrappedValue)
}
func makeCoordinator() -> EditorCoordinator {
os_log(.info, log: uiLog, "makeCoordinator")
let coordinator = EditorCoordinator(binding: text)
return coordinator
}
}
如果像我一样,您只需要编辑一些没有属性的文本,则可以仅用String替换NSAttributedString,并针对这种简单情况修改代码。
答案 1 :(得分:-2)
您可以在SwiftUI中使用多行TextField
(您只需在其上调用.lineLimit(N)
即可使用多行功能),但是当前不支持多种样式的文本。 TextField
只有一种字体和样式。
不过,您可以自己滚动它:创建一个出售NSViewRepresentable
的{{1}}实现并将其绑定到NSTextView
属性。您需要自己处理所有文本视图模型同步和绑定更新,但这当然是可行的。