MKMapView 中的自定义工具栏和搜索栏
当我从 viewcontroller 类加载 mkmapview 时,如何在 Iphone 中加载默认的地图视图工具栏和搜索栏
How can I load default mapview toolbar and search bar in Iphone when I am loading mkmapview from my viewcontroller class
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法获得您称为默认的搜索工具栏,原因是Apple开发的地图应用程序可能将两者(搜索工具栏和地图视图)彼此分开。
因此,建议您将两者用作单独的视图。
myCustomSearchToolBar
可以是自定义搜索栏视图的实例,也可以是UISearchBar
。请阅读以下博客文章来创建 UISearchBar。
使用 UISearchBar 和 UITableView 构建 SearchView
You can't get the search toolbar which you called default and the reason is that Map Application that's developed by Apple may have both (search toolbar and mapview ) separated with each others.
So, would suggest you to use both as the separate views.
myCustomSearchToolBar
can be either the instance of your Custom search bar view OrUISearchBar
.Go through the below blog post for creating UISearchBar.
Building a SearchView with UISearchBar and UITableView