gpt4 book ai didi

swift - NSCollectionView 如何在没有 item 的情况下绘制文本?

转载 作者:行者123 更新时间:2023-11-30 12:11:18 24 4
gpt4 key购买 nike

enter image description here

我在NSCollectionView中看过很多APP列表文章。当没有条目时, View 中间会有一些提示,例如“没有条目”、“等待添加”等。

您有任何相关案例向我展示这是如何实现的吗?

谢谢

最佳答案

试试这个代码:

  func showMessage(_ text: String) {
let messageLabel = UILabel()
messageLabel.text = text
messageLabel.numberOfLines = 0
messageLabel.textAlignment = .center
self.collectionView.backgroundView = messageLabel
}

func hideMessage() {
self.collectionView.backgroundView = nil
}

关于swift - NSCollectionView 如何在没有 item 的情况下绘制文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46022668/

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