像谷歌的建议一样在iPad上创建一个popover

时间:2013-06-10 06:53:44

标签: iphone ios objective-c ipad

我需要在我的应用中创建一个建议列表,就像在ipad中的safari中的谷歌建议一样。谁能知道如何实施请帮助我。

2 个答案:

答案 0 :(得分:1)

您可以使用以下链接在iOS中创建弹出式建议页面。

SuggestionsList

我希望对你有帮助。

答案 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等任何东西。