从Swift 2.3转换时,无法将String类型的值转换为指定的NSManagedObjectContext类型. 3.2

从Swift 2.3转换时,无法将String类型的值转换为指定的NSManagedObjectContext类型. 3.2

问题描述:

我需要帮助.从Swift 2.3转换时-> 3.2我收到以下错误.我无法解决此错误.

I need Help. While conversion from Swift 2.3 -> 3.2 I received below error. I'm not able to resolve this error.

下面是我的编码工作,遇到一些问题.

Below is my coding stuff, where I'm facing some issues.

错误1:无法将字符串类型的值转换为指定的类型 NSManagedObjectContext **

Error1 : Cannot convert value of type String to specified type NSManagedObjectContext**

错误2:无法将URL类型的返回表达式转换为返回类型URL.

Error2 : Cannot convert return expression of type URL to return type URL.

 class func persistentFileURL(_ name: String, enclosingDirectoryName: String) -> Foundation.URL {
        let directoryURL = self.directoryForPersistentStorage(enclosingDirectoryName)
        let urlPath = directoryURL.path
        let filePath: NSManagedObjectContext = (urlPath as NSString).appendingPathComponent(name) //Error1 : Cannot convert value of type String to specified type NSManagedObjectContext 
        
        return URL(context: filePath) // Error2 : Cannot convert return expression of type URL to return type URL.
    }

注意:URL是声明为处理此问题的单独的类: URL_Class

Note : URL is separate Class declared to handle this : URL_Class

请帮助我.我是iOS的新手.无法理解此类错误.

Please help me. I'm very new to iOS. Not able to understand this type of error.

let filePath: NSManagedObjectContext = (urlPath as NSString).appendingPathComponent(name)

应阅读

let filePath: String = (urlPath as NSString).appendingPathComponent(name)