子视图覆盖了 UITableView 的第一行
在其他对象中,我目前有一个带有 UIView 子视图的 UITableView。在 Interface Builder 中,UIView 子视图的高度默认设置为 0。
当我以编程方式更新 UIView 子视图的高度时,它覆盖了 UITableView 的第一行。我无法调整 UITableView 框架的 y 位置,因为它会移动 UITableView 和 UIView 子视图。
有没有办法避免 UIView 子视图覆盖 UITableView 的行?
Among other objects, I currently have a UITableView with a UIView subview. The height of the UIView subview is set to 0, by default in Interface Builder.
When I update the height of the UIView subview programmatically, it covers up the first row of the UITableView. I cannot adjust the y-position of the frame of the UITableView because it moves both the UITableView and the UIView subview.
Is there a way to avoid having the UIView subview cover the row of the UITableView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看
UITableView
的tableHeaderView
属性来了解这一点。将此属性设置为空视图可能会解决您的问题。Check out the
tableHeaderView
property ofUITableView
for this. Setting this property to be an empty view may solve your problem.