gpt4 book ai didi

ios - 尝试使用 setNeedsDisplay()

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

我正在尝试重新加载 UIView。实际上我得到一个错误

Cannot convert value of type 'HomeViewController' to expected argument type 'UIView'

所以这是代码:

UIView.setNeedsDisplay(self)

你有什么想法吗?

最佳答案

UIView是一个类,setNeedsDisplay()是一个实例函数。

您想在 UIView 实例(而不是类本身)上调用此函数。所以你想要:

self.view.setNeedsDisplay();

setNeedsDisplay() 也不接受任何参数,所以我不知道您为什么要将 self 传递给它。

关于ios - 尝试使用 setNeedsDisplay(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34856706/

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