self.coreDataStack.finalizeStatusForAccount(currentAccount, fromStatus: ObjectStatus.tempClear, toStatus: ObjectStatus.clear)
self.coreDataStack.finalizeStatusForAccount(currentAccount, fromStatus: ObjectStatus.tempGreen, toStatus: ObjectStatus.green)
我收到这两个警告,有人可以建议如何删除这些警告
最佳答案
警告说finalizeStatusForAccount
函数返回一个值,但您不使用它。您可能希望将返回值分配给变量,如下所示:
let returnValue = self.coreDataStack.finalizeStatusForAccount...
或者,如果您知道不需要检查返回值,则可以这样编写:
let _ = self.coreDataStack.finalizeStatusForAccount...
后者是Swift中的标准模式。
关于ios - swift 3中未使用finalizeStatusForAccount的调用结果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45999652/