1
我這裏出狀況了,請幫我在這,的iPad:酥料餅沒有出現在適當的地方
1)我有自定義的細胞 2)每個單元有2個搜索酒吧和2個標貼的表。
我正在嘗試的是假設用戶開始編輯searchBar彈出窗口應該出現指向該搜索欄。
我已經實現了這一點,但酥料餅沒有出現過酥料餅的期望的搜索欄而且高度也太長一段
if (searchBar.tag==10) {
NSLog(@"Display date popover");
CGRect pickerFrame = CGRectMake(0,0,300,200);
UIViewController *tempDateViewController=[[UIViewController alloc] init];
UIDatePicker *datePicker = [[UIDatePicker alloc] initWithFrame:pickerFrame];
[datePicker addTarget:self action:@selector(pickerChanged:) forControlEvents:UIControlEventValueChanged];
[tempDateViewController.view addSubview:datePicker];
if(!currentPopover)
{
currentPopover=[[UIPopoverController alloc] initWithContentViewController:tempDateViewController];
}
else {
[currentPopover setContentViewController:tempDateViewController animated:YES];
}
tempDateViewController.contentSizeForViewInPopover=CGSizeMake(320, 300);
[datePicker release];
[tempDateViewController release];
[currentPopover presentPopoverFromRect:searchBar.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
請幫我解決這個問題之一。 Thanx提前。
什麼方法是這樣的代碼? searchBar變量是如何設置的? – Anna 2011-03-10 04:00:29
searchBarDidBeginEditing – 2011-03-10 07:39:54