表视图上的UIPopoverController

时间:2013-01-24 00:24:55

标签: objective-c uitableview uipopovercontroller

我在工具栏项目上使用了UIPopoverController ..当用户点击按钮时,它会在表格视图中显示项目列表..请在下面截图..

enter image description here

问题是如何关注弹出窗口中的表视图并允许用户滚动到单元格。?

谢谢,

链路

1 个答案:

答案 0 :(得分:1)

好的,现在我更好地理解你的问题了。您的popover中的tableview UITableViewDelegate应该实现tableView:didSelectRowAtIndexPath:。在此方法中,您将执行以下操作。

  1. 使用indexPath
  2. 确定选择了哪一行
  3. 根据所选行,过滤其他表视图的数据源并直接调用[myOtherTableView reloadData],发布通知,执行块或进行另一层委派
  4. 取消您的UIPopoverController