我需要在我的应用程序中创建一个建议列表,就像 ipad 中 safari 中的 google 建议一样。谁能知道如何实施请帮助我。
问问题
166 次
2 回答
1
于 2013-06-10T06:57:51.073 回答
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];
根据您的要求,您可以将任何东西添加到弹出框上,例如 UIView/UIPickerView/UIDatePicker 等。
于 2013-06-10T07:10:02.230 回答