ipad の safari での Google の提案と同じように、アプリで提案リストを作成する必要があります。誰でも実装方法を知っていますか?助けてください。
質問する
166 次
2 に答える
1
于 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 に答える