如何让 UI 组件随 UITableView 一起滚动
我试图将 UI 组件粘在 UITableView 中的单元格上并与它们一起滚动... 这看起来很奇怪,但一张图片可以理解要点:
滚动之前
在滚动期间,
我尝试使用其他 UI 组件(另一个 UIVIew)实现相同的效果。 您有一些提示可以做到这一点吗?
- 它是在开始时插入的自定义 uitableviewcell 吗?
- 有没有一个易于实施的 hack ?
非常感谢您的帮助!
I am trying to have a UI component stuck to my cells in a UITableView and scrolling with them...
It seems weird but a picture permits to understand the main point:
Before Scrolling
During Scroll
I am trying to do the same effect but with other UI components (another UIVIew).
Do you have some hints to do this ?
- Is it a custom uitableviewcell inserted at start ?
- Is there an easy-to-implement hack ?
Thanks a lot for your help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加任何 UIView 并通过将 UIView 放置在表格标题中使其随表格单元格滚动。表视图有一个特殊的属性,称为 tableHeaderView。
使用这样的东西:
You can add any UIView and make it scroll with the table cells by placing the UIView in the table header. There is a special property for a table view, called tableHeaderView.
Use something like this: