保持表格视图的第一行不变
我试图在 UITableView 中显示数据,第一行将是一个用于标识数据类型的标签。向下滚动时如何保留第一行作为标签?
谢谢!
I am trying to display data in a UITableView, and the first row will be a label to identify the type of data. How can I keep the first row as a label when scrolling down?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 TableView 标题来做到这一点。这是一个例子:
You can do that with the TableView header. Here is an example:
使用表视图的标题来专门执行此操作。所有功能都已内置到 UITableView 类中。在 UITableViewDataSource,只需实现
Use the header's of table views to do this specifically. All the functionality is already built into the UITableView class. In the UITableViewDataSource, just implement
我认为实现它的一种方法是使用
UITableView
的tableHeaderView
属性。使tableHeaderView
看起来像表格的第一行,并从第二行开始表格。I think one way you can implement it is by using the
tableHeaderView
property of theUITableView
. Make thetableHeaderView
look like the first row of your table and begin the table from the 2nd row.