Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的工具栏项目上使用了 UIPopoverController .. 当用户单击按钮时,它会在表格视图中显示项目列表.. 请在下面截图..
问题是您如何专注于弹出窗口上的表格视图并允许用户滚动到单元格..?
谢谢,
关联
好的,所以现在我更好地理解了你的问题。您UITableViewDelegate的弹出窗口中的 tableview 应该实现tableView:didSelectRowAtIndexPath:. 在这种方法中,您将执行以下操作。
UITableViewDelegate
tableView:didSelectRowAtIndexPath:
indexPath
[myOtherTableView reloadData]
UIPopoverController