当我从viewcontroller类加载mkmapview时,如何在Iphone中加载默认的mapview工具栏和搜索栏
答案 0 :(得分:0)
您无法获得默认的搜索工具栏,原因是Apple开发的地图应用程序可能同时将搜索工具栏和地图视图分开。
因此,建议您将两者视为单独的视图。
myCustomSearchToolBar
可以是自定义搜索栏视图的实例,也可以是UISearchBar
。
[containerView addSubview:myCustomSearchToolBar];
[containerView addSubview:myMapView];
[self.view addSubview:containerView];
浏览以下博文,了解如何创建UISearchBar。