gpt4 book ai didi

iphone - 我如何在 TableView 的单元格中获取容器 UITableView

转载 作者:行者123 更新时间:2023-12-03 20:33:52 30 4
gpt4 key购买 nike

有什么方法可以访问单元格中包含当前 UITableViewCell 的 UITableView 吗?

最佳答案

您可以向上查看 View 层次结构,直到找到 UITableView:

    UIView *v = self;
while (v && ![v isKindOfClass:[UITableView class]]) v = v.superview;
// v now holds the table view, or nil if there isn't one

尽管您可能应该质疑为什么单元格需要戳 TableView ,以及是否有更直接的方法来做到这一点。

关于iphone - 我如何在 TableView 的单元格中获取容器 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5745576/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com