我想把一个 swift 3do-catch
放在一个函数中,而不是在我需要的地方不断地写它;在这个函数中,我希望返回tuple
一个布尔值和一个可选错误。
我正在尝试从函数返回一个元组并在我的 XCTest 中处理结果
但是,我收到一条错误消息:
条件绑定的初始化程序必须具有 Optional 类型,而不是 '(Bool, Error?)'(又名 '(Bool, Optional)')
我的功能如下;
public static func isValidPurchase(train: Train, player: Player) -> (Bool, Error?) {
do {
let result = try train.canBePurchased(by: player)
return (result, nil)
} catch let error {
return (false, error)
}
}
我的canBePurchased
代码有点长,但它是这样的:
func canBePurchased(by player: Player) throws -> Bool {
if (!self.isUnlocked) {
throw ErrorCode.trainIsNotUnlocked(train: self)
}
// other if-statements and throws go here
}
在我的 XCTest 中,我这样称呼它:
if let result = TrainAPI.isValidPurchase(train: firstTrain, player: firstPlayer) as! (Bool, Error?) {
}
我试图强制转换:
if let result: (Bool, Error?) ...
但这只会将编译器错误降级为警告。
编译器显示上述错误。
我在什么方面做错了,Initializer for conditional binding must have Optional type
我该如何避免?
谢谢