由于在展开可选值期间发现项目为零而出错
Getting error due to item found nil during unwrapping of Optional Value
我正在尝试添加一个按钮,允许用户刷新 table 视图并将它们带回 table 的顶部。我正在尝试添加一段代码,其中的 var 设置如下 var layoutGuide:UILayoutGuide!
但它给了我这条消息。 I then try to run the simulator and simply ignore this message but then I get an error saying it has found an optional value nil when unwrapping it. 关于为什么会发生这种情况的任何想法?谢谢
使用:let layoutGuide = self.view.safeAreaLayoutGuide
代替 var layoutGuide:UILayoutGuide
。
我正在尝试添加一个按钮,允许用户刷新 table 视图并将它们带回 table 的顶部。我正在尝试添加一段代码,其中的 var 设置如下 var layoutGuide:UILayoutGuide!
但它给了我这条消息。
使用:let layoutGuide = self.view.safeAreaLayoutGuide
代替 var layoutGuide:UILayoutGuide
。