gpt4 book ai didi

iphone - 如果 UITableview 为空显示图像

转载 作者:搜寻专家 更新时间:2023-10-30 20:06:04 25 4
gpt4 key购买 nike

我现在正在 Google 上寻找 3 个小时如何删除 tableview 并在 tableview 为空(没有更多行)时显示图像。有人知道吗?我知道这是可能的,因为我在很多应用程序上都看到过。

我能找到的是:

// Check if table view has any cells
int sections = [self.tableView numberOfSections];
BOOL hasRows = NO;
for (int i = 0; i < sections; i++)
hasRows = ([self.tableView numberOfRowsInSection:i] > 0) ? YES : NO;

if (sections == 0 || hasRows == NO)
{
UIImage *image = [UIImage imageNamed:@"test.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];

// Add image view on top of table view
[self.tableView addSubview:imageView];

// Set the background view of the table view
self.tableView.backgroundView = imageView;
}

放在哪里?

谢谢!

最佳答案

如果您使用 Storyboard 只是将 View 放在 UITableView 之后

如果您的数据数组在创建时为空,只需隐藏您的 UITableView 以显示其背后的“空表” View 。

[tableView setHidden:YES];

关于iphone - 如果 UITableview 为空显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14345062/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com