获取 UITableView 部分的框架

发布于 2024-11-26 08:22:18 字数 65 浏览 1 评论 0原文

如何在分组表视图中获得整个部分的框架?

我想在编辑时通过将表格视图的边界设置为该框架来隔离一个部分。

how would one get the frame of a whole section in a grouped table view?

I want to isolate a section when editing by setting the table view's bounds to that frame.

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

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

发布评论

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

评论(2

眼藏柔 2024-12-03 08:22:18

您将使用 UITableView-(CGRect)rectForSection:(NSInteger)section; 方法获取某个部分的矩形。

You will get the rect for a section using UITableView's -(CGRect)rectForSection:(NSInteger)section; method.

痴梦一场 2024-12-03 08:22:18

当表格进入编辑模式时,您可能需要deleteSections:withRowAnimation:,当表格离开编辑模式时,您可能需要insertSections:withRowAnimation:

这还需要更改其他 dataSource 方法以返回适当的值,就好像当 self.tableView.editing == YES 时只有一个部分。

You might want to deleteSections:withRowAnimation: when the table goes into editing mode and insertSections:withRowAnimation: when it leaves editing.

This would also require changes to other dataSource methods to return appropriate values as if there is only one section when self.tableView.editing == YES.

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