Swift中使用do-catch语句进行异常处理

 do {
    try functionWillThrowError()
  } catch {
    // deal with error
  }

你可能感兴趣的:(学习iOS)