Contents

UISearchTextFieldPasteItem

A protocol that supports pasting tokens.

Declaration

@MainActor protocol UISearchTextFieldPasteItem : UITextPasteItem

Overview

When implementing textPasteConfigurationSupporting(_:transform:), your UITextPasteDelegate can decide whether to paste the item as text or as a token. If the UITextPasteItem it receives is a UISearchTextFieldPasteItem, you can call setSearchTokenResult(_:) to prepare a token for pasting instead of text.

Topics

Providing a token

See Also

Pasteboard support