从可空对象转换为非空对象 (Objective-C)
Convert from nullable object into nonnull (Objective-C)
我一直在使用 Xcode 6.3
中的新 nullability 内容
但是,我 运行 遇到了这样的问题
[Object doSomethingWithNonNullParam:otherObject.nullableProperty];
如果我确信 otherObject.nullableProperty
不是 nil
,最好的解决方法是什么?
我觉得这里的演员阵容合适吗?
[Object doSomethingWithNonNullParam:(OtherObject *_Nonnull) otherObject.nullableProperty];
我一直在使用 Xcode 6.3
中的新 nullability 内容但是,我 运行 遇到了这样的问题
[Object doSomethingWithNonNullParam:otherObject.nullableProperty];
如果我确信 otherObject.nullableProperty
不是 nil
,最好的解决方法是什么?
我觉得这里的演员阵容合适吗?
[Object doSomethingWithNonNullParam:(OtherObject *_Nonnull) otherObject.nullableProperty];