"do" 内的 NSFetchRequest 出错

Error on NSFetchRequest inside "do"

在我的 Swift 2 OS X 应用程序中我有这个错误:

谁能帮我解决一下?

"Errors thrown from here are not handled" 因为在你的 do 之后确实没有 catch。您应该添加如下内容:

do {
    ...
    for user in result {
        ...
    }
} catch let error as NSError {
    print(error)
}