从自定义 TableViewCell 中的按钮访问主视图
我在表视图单元格中有一个按钮,按下该按钮会弹出一个 UIPickerView。我面临的唯一问题是找出如何从单元内部访问主视图。有什么想法吗?
I have a button in a table view cell which, when pressed brings up a UIPickerView. The only problem that I'm facing is finding out how to access the main view from inside the cell. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以沿着父视图链向上,直到到达 UITableView 视图。但是,我认为更好的方法是将选择器放置在表格单元格中。这里的隐喻是按下按钮导致单元格进入编辑模式,并且需要一个选择器视图(在您的情况下)。整个表视图 API 有大量的辅助函数来实现这一点。
You could follow the parent view chain up until you reach the view that is a UITableView. However, I think the better approach is to place the picker in the table cell. The metaphors here is pressing the button causes the cell to enter edit mode, and a picker view is needed (in your case). The whole table view API has plenty of helper functions to make that happen.