addPersistentStoreWithType方法奇怪的编译错误

时间:2014-08-21 13:47:17

标签: ios core-data swift xcode6-beta6

使用Xcode 6 beta 6,我在这一行得到了以下编译器错误:

persistentStoreCoordinator.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: storeURL, options:  [:], error: nil)
参数

NSSQLiteStoreType

' NSString的'与' String'

不同

addPersistentStoreWithType方法需要String,但预定义值的类型为NSString

我该怎么办?

enter image description here enter image description here

更新

我现在用这个试过,还是一样。

import Foundation

persistentStoreCoordinator.addPersistentStoreWithType((NSSQLiteStoreType as String), configuration: nil, URL: storeURL, options:nil , error: nil)

现在链接器错误如下所示:

enter image description here

0 个答案:

没有答案