2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[SwiftUI macOS アプリ] 複数行の text field

Last updated at Posted at 2020-06-27

完成イメージ

複数行に渡って書けるテキストフィールドを作ります。 SwiftUI に用意されている TextField だと一行しか書けないので。

スクリーンショット 2020-07-04 21.41.16.png

コード

ContentView.swift
import SwiftUI

struct ContentView: View {
    @State var text = "default text"
    var body: some View {
        VStack {
            MultiTextView(text: $text)
            Text(text)
                .frame(maxWidth: .infinity, maxHeight: .infinity)
        }
    }
}

struct MultiTextView: NSViewRepresentable {
    @Binding var text: String

    func makeNSView(context: Context) -> NSTextView {
        let view = NSTextView()
        view.delegate = context.coordinator
        view.string = text
        return view
    }
    
    func updateNSView(_ nsView: NSTextView, context: Context) {
        // この行はいらなかった。
        nsView.string = text
    }
    
    func makeCoordinator() -> Coordinator {
        Coordinator(self)
    }
    
    class Coordinator: NSObject, NSTextViewDelegate {
        var multiTextView: MultiTextView
        init(_ multiTextView: MultiTextView) {
            self.multiTextView = multiTextView
        }
        func textDidChange(_ notification: Notification) {
            guard let text = notification.object as? NSText else {
                return
            }
            self.multiTextView.text = text.string
        }
    }
}

参考:

2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?