0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【SwiftUI】コピー&ペーストを制御する(macOS)

Posted at

はじめに

copyableの公式ドキュメントにあるサンプルコードを元にコピー&ペーストを制御してみます。

今回作成するサンプルアプリはコマンドのコピー(⌘ + c)とペースト(⌘ + v)でのみ反応します。

サンプルアプリ

画面収録-2024-01-27-20.43.52.gif

実装

import SwiftUI

struct ContentView: View {
    @State private var strings = ["Alpha", "Beta", "Gamma"]
    @State private var selection: Set<String> = []
    
    var body: some View {
        List(strings, id: \.self, selection: $selection) {
            Text($0)
        }
        // コピー
        .copyable(Array(selection))
        // ペースト
        .pasteDestination(for: String.self) { string in
            strings.append(contentsOf: string)
        }
    }
}

おわり

macOS13から使用できます。
コマンドにしか反応しないので、アプリに組み込むときはアナウンスがないと気づかれないかもしれないですね

公式ドキュメント

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?