UISearchToken

1860 ワード

https://developer.apple.com/documentation/uikit/uisearchtoken
"Search criteria in a search text field, represented by text and an optional icon."
検索テキストフィールドに表示される検索条件は、テキストとオプションのアイコンで表示されます.

Declaration

@MainActor class UISearchToken : NSObject

Overview


検索タグを使用して、UISearchTextFieldで複雑な検索クエリーを理解および編集できます.標準テキストインタラクションでのタグの役割は、削除、選択、ドラッグなど、単一の文字と同じです.検索タグには常にテキストがあり、アイコンがある必要があります.

アプリケーションに意味のある検索トークンごとにrepresentedObjectを割り当ててください.これらの追加データをタグに貼り付け、検索フィールドで使用可能な情報を使用して検索フィールド全体を再編成できます.たとえば、アプリケーションがステータスリカバリから開始するか、ユーザーが検索を開始します.
検索タグの使用方法を学習するには、検索コントローラの集約検索を使用します.
Using Suggested Searches with a Search Controller
https://developer.apple.com/documentation/uikit/view_controllers/using_suggested_searches_with_a_search_controller

See Also


Search Field


UISearchTextField


テキストと検索タグの表示と編集に使用するビュー.
https://developer.apple.com/documentation/uikit/uisearchtextfield
https://velog.io/@panther222128/UISearchTextField