IOS:在表格视图中搜索名称
我有一个 4 行的表格视图,每行都有一个名称和描述: 我举一个愚蠢的例子:
1 - 苹果红 2 - 三绿 3 - 家庭大 4 - 此表视图内的大表
我插入一个搜索栏,当我在此搜索栏中写入时,我只想显示我开始写入的单词。
例子: 如果在搜索栏中我写“a”,我只想在表格视图中看到“苹果红”或 如果在搜索栏中我写“t”,我只想在表格视图中看到“三个绿色”和“表格大”。 我该怎么做呢?
I have a tableview with 4 rows and in every row there is a name and a description:
I make a stupid example:
1 - Apple red
2 - Three green
3 - Home big
4 - Table large
inside this tableview I insert a search bar and when I write inside this search bar I want to show only words that I begin to write.
example:
if in the search bar I write "a" I want to see in tableview only "apple red" or
if in the search bar I write "t" I want to see in tableview only "three green" and "table large".
How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 TableSearch 示例代码项目。它应该向您显示您需要的一切:
http://developer.apple。 com/library/ios/#samplecode/TableSearch/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007848
Have a look at the TableSearch sample code project. It should show you everything you need:
http://developer.apple.com/library/ios/#samplecode/TableSearch/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007848