将 UITableViewCell 变成 UIView

发布于 2024-11-16 00:22:12 字数 347 浏览 6 评论 0原文

我有一个 UITableView,在 tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 中,我希望能够访问所选单元格所在的框架。这是我的内容正在尝试:

UIView *cell = tableView.indexPathForSelectedRow;

UITableViewCell *cell = (UITableViewCell *)indexPath;

我希望能够访问所选单元格所在的视图。

提前致谢。

I have a UITableView, and in the tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath, I want to be able to access the frame that the selected cell is in. Here is what I was trying:

UIView *cell = tableView.indexPathForSelectedRow;

UITableViewCell *cell = (UITableViewCell *)indexPath;

I want to be able to access the view that the selected cell is in.

thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

刘备忘录 2024-11-23 00:22:12

为此,请使用:

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

比您可以像任何其他 UIView 即一样访问单元格上的所有信息

cell.framecell.bound

To do this, use:

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

than you can access all the info on cell as you would any other UIView

ie. cell.frame, cell.bound, etc.

顾北清歌寒 2024-11-23 00:22:12

直接访问单元格是不必要的——是的,您可以通过 -cellForRowAtIndexPath: 获取单元格及其框架,但是您必须减去 UIScrollView(UITableView 的子类)的内容偏移量) 获取单元格在表格视图边界内的实际位置。最好的方法是 UITableView 方法 -rectForRowAtIndexPath:

Accessing the cell directly isn’t necessary—yes, you can get the cell and its frame via -cellForRowAtIndexPath:, but you’d then have to subtract the content offset of the UIScrollView (which UITableView subclasses from) to get the cell’s actual position within the boundaries of the table view. The best approach for this is the UITableView method -rectForRowAtIndexPath:.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文