我想要一个这样的页面:
这是iPad地图的地图页面。如您所见,它顶部有一个位置搜索栏。
当屏幕顶部有导航栏时,是否可以在顶部设置一个类似此图像的搜索栏?
编辑: 除了实现这一点之外,使用导航栏上的搜索栏对于苹果指南并没有错。请帮忙。
谢谢
答案 0 :(得分:1)
这不是针对iphone指南。我的应用程序已获得此搜索栏的批准。
以下代码会将搜索栏添加到导航栏:
LocationSearchBar = new UISearchBar (new RectangleF (0,0,250,44));
UIBarButtonItem searchButtonItem = new UIBarButtonItem (LocationSearchBar );
this .NavigationItem .RightBarButtonItem =searchButtonItem;