FMDatabaseQueue 无法在 class init() 中存活

FMDatabaseQueue is not surviving a class init()

我一直在尝试将代码初始值设定项组合到模型 class 的 init() 函数中,我是这样的:

 init?() {
    let docsDir =     NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String
    let dbPath = docsDir.stringByAppendingPathComponent("app.sqlite")
    let dbQueue = FMDatabaseQueue(path: dbPath)

    if dbQueue == nil {
        NSLog("%@ : %@", "Problem connecting to the db at", __FUNCTION__)
        return nil
    } else {
        NSLog("%@", "Successfully connected to the db")
    }
}

当我尝试从 class 的另一个函数中使用 dbQueue 时,dbQueue 总是等于 nil 就像

 func anotherFunction() {
   dbQueue?.inDatabase{ db in .... }
 }

所以当我尝试初始化时:

 let db = dbConnector()
 db.anotherFunc() // Zilch!

我的问题是为什么会发生这种情况以及如何解决它。请帮忙,我会请托尔保佑你

我找到了解决方案。我在 class 属性 dbQueue 上使用 let dbQueue 实际上是在 init() 中创建一个同名的局部变量,留下 属性 未初始化,因此 nil