1
0

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 1 year has passed since last update.

UITextViewでテキストを選択した時に出るMenuをカスタマイズする方法

Last updated at Posted at 2023-09-12

UITextViewで文を選択した時に出るMenuに新たなMenuを追加したかったので、備忘録として残します。

実装

import UIKit

final class TextView: UITextView {
    override func editMenu(for textRange: UITextRange, suggestedActions: [UIMenuElement]) -> UIMenu? {
        var actions = suggestedActions

        let customMenu = UIMenu(
            title: "",
            options: .displayInline,
            children: [
                UIAction(title: "カスタム") { _ in
                    print("カスタム")
                }
            ]
        )

        actions.insert(customMenu, at: 0)
        return UIMenu(children: actions)
    }
}

これで既存のメニューにあらたなMenuを追加することができました!
スクリーンショット 2023-09-12 21.10.19.png

また、既存のメニューを全て消し、カスタムのメニューだけ表示したい場合はこのように記述します。

final class TextView: UITextView {
    override func editMenu(for textRange: UITextRange, suggestedActions: [UIMenuElement]) -> UIMenu? {
        var actions = suggestedActions

        let customMenu = UIMenu(
            title: "",
            options: .displayInline,
            children: [
                UIAction(title: "カスタム") { _ in
                    print("カスタム")
                }
            ]
        )

        return UIMenu(children: customMenu.children)
    }
}

おわりに

意外と参考になるサイトがなくて苦労しました。
SwiftUIでカスタマイズしたい場合は、UIKitに触れなければならないようです。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?