I'm creating a function in swift to check the if non optional value return nil. My aim is just to handle that exception and avoid app crash for unexpected nil values.
I have two variables in my class:
// My Class variables
var compulsoryValue: Any!
I dont want to check optionalValue as nil. The compiler is returning Optional.none or Optional.some enums instead of nil or some value.
My problem:
I'm facing the problem that I am not able to check if this value is empty or not. As for empty the compiler returning none while for a value it is return some as defined in Swift Optional Enum.
Implicitly Unwrapped Optional is just throwing an error while it has a nil value.
How I can check that the value nil which was supposed as a non-optional value?
Update# 1:
My code:
class myClass {
var compulsoryValue: Any!
init() {
if type(of: compulsoryValue) != Optional<Any>.self {
// Here I want to check if compulsoryValue is nil so I want to throw an exception
print("this is not optional: ", compulsoryValue)
}
}
}
_ = myClass()