作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果列表 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/
我有一个名为 FeedView 的 View ,由 FeedViewController 处理。 我还有一个名为“NearestStore”的 XIB,它由一个名为“NearestStoreViewC
我有一个警报表,其中 tr 元素是使用 JS 动态添加/删除的。问题是它有一个 border-top 将它与上面的内容分开,当表格为空时我想隐藏这些内容。我试过 :empty 和 display:no
我是一名优秀的程序员,十分优秀!