ios – 如何在Swift中没有一个对象

前端之家收集整理的这篇文章主要介绍了ios – 如何在Swift中没有一个对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何为 Swift中的对象指定零.我直接分配错误.

解决方法

From Apple Documentation:

nil cannot be used with nonoptional constants and variables. If a
constant or variable in your code needs to work with the absence of a
value under certain conditions,always declare it as an optional value
of the appropriate type

也非常重要的注意到:

Swift’s nil is not the same as nil in Objective-C. In Objective-C,nil
is a pointer to a nonexistent object. In Swift,nil is not a
pointer—it is the absence of a value of a certain type. Optionals of
any type can be set to nil,not just object types

我希望能帮助你!

.

原文链接:https://www.f2er.com/iOS/336752.html

猜你在找的iOS相关文章