从弹出窗口上的按钮中取消弹出窗口

时间:2011-12-09 05:33:25

标签: ios ios5

我创建了一个包含表格的popover 当用户将在那时选择行时我想解除popover。 任何的想法。

2 个答案:

答案 0 :(得分:0)

看看苹果documentation ...看看popoverclass ......

答案 1 :(得分:0)

调用表委托方法后,关闭popover:

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

     [popoverController dismissPopoverAnimated:YES];

     // Handle the row click
}

其中 popoverController 是在创建弹出窗口时设置的实例变量。