I've been using the new nullability stuff in Xcode 6.3
However, I'm running into an issue like this
[Object doSomethingWithNonNullParam:otherObject.nullableProperty];
Whats the best way to solve this If I'm confident otherObject.nullableProperty
is not nil
?