在Composed UITableView中实现方法搜索

时间:2013-04-30 12:53:19

标签: ios uitableview uisearchbar

我在我的应用程序中使用了UITableView。在那里,我使用了UITableView

,而不是默认UILabels

我有一个对象列表,在每个表行中我有6个标签,如:

1st label --Customername 
2nd label --Curresponding customername of the object
3rd label --CustomerID
4th label --Curresponding customeID of the object
5th label --Description
6th label --Curresponding description of the object

在此,我如何为特定条件实施搜索方法,比如CustomerName

1 个答案:

答案 0 :(得分:0)

在UITableView上添加searchBar,并使用searchBar的SearchButtonClicked委托实现搜索功能,例如,如果用户搜索了任何关键字,则在类中的searchBarButtopnClicked委托中通过searchBar.text捕获关键字。现在将该名称搜索到Array中(从中填充UITableView)。如果您发现任何与搜索关键字类似的对象重新加载UITableView,则会给出UIAlertView“No Item Matched”