有谁知道如何使用 UISearchBar 搜索 MKMapView 上的注释吗?
我已经搜索了几个小时,但什么也没找到。
还有人可以告诉我他们是否知道如何将分组的 uiTableView 中的单元格链接到某个 DetailView 并将不同的单元格链接到另一个 DetailView 吗?
I've searched for hours and I found Nothing
Also can anyone tell me if they know how to link a cell in grouped uiTableView to a certain DetailView and link a different cell to another DetailView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于地图,如果这是我的注释,我会将搜索代码放在哪里。
对于 UITableView Grouped,如果我的代码如下所示,我将在哪里以及如何使用该代码:
For the Map, Where would I put the Search Code and at if this is my annotations.
For the UITableView Grouped, where and how would i use that code if the code I have Looks like this:
搜索注释 -
这取决于您想要如何搜索注释,如果您想按标题搜索它,那么首先使用
MKMapView
的注释属性获取所有注释 -UITableView -
如果您想点击单元格上的链接,然后您可以在
组表中执行此操作,首先检查indexPath.section,然后检查indexPath.row。
search annotation-
It depends on by how you want to sear an annotation, if you want to search it by title then first get all the annotation by using annotation property of
MKMapView
as -UITableView -
If you want to link on tap on cell then you can do it in
for group table first check for indexPath.section and then check for indexPath.row .