0

关于弹出框的快速问题,当我从中选择某些东西时,我似乎没有掌握关闭弹出视图的方法(tableview)

所以我在使用 UIPopoverController 弹出的 tableview 上有一个列表项,所以当我选择一个项目时,我希望 popove 消失。

主视图控制器

  - (IBAction)popoverFontName:(id)sender 
    CGRect popoverRect = [self.view convertRect:[popoverFontName frame] 
                                       fromView:[popoverFontName superview]];
    TitleController *titleC=[[TitleController alloc]init];
    popup =[[UIPopoverController alloc]initWithContentViewController:titleC];

    [popup presentPopoverFromRect:popoverRect inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
    [popup setPopoverContentSize:CGSizeMake(50.0, 300.0)];

    [titleC release];

}

标题控制器

- (void)tableView:(UITableView *)tableView 
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    NSString *selectedLang = [titleList objectAtIndex:indexPath.row];  

    //Initialize the detail view controller and display it.  
    MyDetViewCont *myDetViewCont = [[MyDetViewCont alloc] initWithNibName:@"myDetViewCont" bundle:[NSBundle mainBundle]]; // view controller instance  

}

在标题控制器上,我不知道如何关闭弹出框

4

1 回答 1

0

您可以在 popoverController 上调用 dismissPopoverAnimated:。您应该将弹出框的实例保留为实例变量,以便从 UITableViewDelegate 方法中解散。

于 2011-01-28T19:57:24.317 回答