保持表格视图的第一行不变

发布于 2024-12-01 09:16:54 字数 78 浏览 1 评论 0原文

我试图在 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 技术交流群。

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

发布评论

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

评论(3

独自←快乐 2024-12-08 09:16:54

您可以使用 TableView 标题来做到这一点。这是一个例子:

UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 60)];
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 20, 300, 40)];
headerLabel.text = NSLocalizedString(@"blablabla", @"");
headerLabel.backgroundColor = [UIColor clearColor];
[header addSubview:headerLabel];

    myTable.tableHeaderView = header;

You can do that with the TableView header. Here is an example:

UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 60)];
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 20, 300, 40)];
headerLabel.text = NSLocalizedString(@"blablabla", @"");
headerLabel.backgroundColor = [UIColor clearColor];
[header addSubview:headerLabel];

    myTable.tableHeaderView = header;
余生共白头 2024-12-08 09:16:54

使用表视图的标题来专门执行此操作。所有功能都已内置到 UITableView 类中。在 UITableViewDataSource,只需实现

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

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

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
网白 2024-12-08 09:16:54

我认为实现它的一种方法是使用 UITableViewtableHeaderView 属性。使 tableHeaderView 看起来像表格的第一行,并从第二行开始表格。

I think one way you can implement it is by using the tableHeaderView property of the UITableView. Make the tableHeaderView look like the first row of your table and begin the table from the 2nd row.

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