我需要在我的应用中创建一个建议列表,就像在ipad中的safari中的谷歌建议一样。谁能知道如何实施请帮助我。
答案 0 :(得分:1)
答案 1 :(得分:0)
使用UIPopOverController。
添加 UIPopoverControllerDelegate 作为ViewController的委托。
在.h文件中声明如下。
UIPopoverController * popover;
<。>在.m文件中..Inventory_VC *vc = [[Inventory_VC alloc] initWithNibName:@"Inventory_VC" bundle:nil];
vc.Search_Text = self.Search_Text;
[vc setContentSizeForViewInPopover:CGSizeMake(360, 600)];
popover = [[UIPopoverController alloc] initWithContentViewController:vc];
popover.delegate = self;
[popover presentPopoverFromRect:theSearchBar.bounds inView:theSearchBar
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
根据您的要求,你可以在Popover上添加UIView / UIPickerView / UIDatePicker等任何东西。