gpt4 book ai didi

Swift - 在 UITableViewController 中通过 Storyboard 显示一个带有空列表的复杂 View

转载 作者:行者123 更新时间:2023-11-28 08:11:02 26 4
gpt4 key购买 nike

如果列表 Controller 为空,我需要在我的 TableViewController 中显示一个包含一些 UIImageView、文本和链接的 View 。

我知道你可以通过这段代码插入一个标签:

func numberOfSections(in tableView: UITableView) -> Int
{
var numOfSections: Int = 0
if youHaveData
{
tableView.separatorStyle = .singleLine
numOfSections = 1
tableView.backgroundView = nil
}
else
{
let noDataLabel: UILabel = UILabel(frame: CGRect(x: 0, y: 0, width: tableView.bounds.size.width, height: tableView.bounds.size.height))
noDataLabel.text = "No data available"
noDataLabel.textColor = UIColor.black
noDataLabel.textAlignment = .center
tableView.backgroundView = noDataLabel
tableView.separatorStyle = .none
}
return numOfSections
}

但我需要在不同的 ViewController 中显示 Storyboard 中设计的复杂 View 。

我试过这个:

let storyboard = UIStoryboard(name: "Main", bundle: nil)
let emptyViewController = storyboard.instantiateViewController(withIdentifier :"empty_controller") as! EmptyViewController
tableView.backgroundView = emptyViewController.emptyView

emptyView是这样定义的

class EmptyViewController: UIViewController {
@IBOutlet weak var emptyView: UIView?

...
}

但这不起作用,如果列表为空,我在表中看不到该 View 。

我该怎么做?

非常感谢

最佳答案

最好的办法是使用两个容器 View ,一个带有 tableview,另一个带有 emptyVC,然后在该容器的父级中,您可以根据您的逻辑隐藏/取消隐藏或删除/添加 View

关于Swift - 在 UITableViewController 中通过 Storyboard 显示一个带有空列表的复杂 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43776681/

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