0

アプリで使用するのに最適なオブジェクトについて質問があります。

NSStringNSDatedoubleを含む3 つの列UITableViewがあります。ユーザーのフィルタリングを支援し、最も簡単なクエリを作成したいと思います。UISearchBarを使用すると、テキストを簡単にフィルタリングできますが、よくわかりません。3 つの異なるタイプの検索が必要です。日付がたとえば UIDatePickerに使用される場合。続行する最良の方法はどれですか? 返信ありがとうございます。

4

1 に答える 1

0
  1)For String  you can use the UISearchBar it will help you to search according to the text entered in it.

  2)For double you can  use the same UISearchBar but you can convert the text which is entered in searchbar as double and proceed filtering with your data.


  3)For NSDate you can give an Option to the user like From Date and To Date so that you can filter and display the records in between the dates
于 2013-04-19T10:37:22.603 に答える