-1

ipad の safari での Google の提案と同じように、アプリで提案リストを作成する必要があります。誰でも実装方法を知っていますか?助けてください。

4

2 に答える 2

1

次のリンクを使用して、iOS でポップオーバー提案ページを作成できます。

提案リスト

お役に立てば幸いです。

于 2013-06-10T06:57:51.073 に答える
0

UIPopOverController を使用します。

ViewController へのデリゲートとしてUIPopoverControllerDelegateを追加します。

.h ファイルでこのように宣言します。

UIPopoverController *ポップオーバー;

.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 に答える