MKMapView 中的自定义工具栏和搜索栏

发布于 2024-12-18 02:40:44 字数 70 浏览 0 评论 0原文

当我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命比纸薄 2024-12-25 02:40:44

您无法获得您称为默认的搜索工具栏,原因是Apple开发的地图应用程序可能将两者(搜索工具栏和地图视图)彼此分开。

因此,建议您将两者用作单独的视图。

myCustomSearchToolBar 可以是自定义搜索栏视图的实例,也可以是 UISearchBar

[containerView addSubview:myCustomSearchToolBar];
[containerView addSubview:myMapView];
[self.view addSubview:containerView];

请阅读以下博客文章来创建 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 Or UISearchBar.

[containerView addSubview:myCustomSearchToolBar];
[containerView addSubview:myMapView];
[self.view addSubview:containerView];

Go through the below blog post for creating UISearchBar.

Building a SearchView with UISearchBar and UITableView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文