Merge pull request #69 from bretsko/master

fixed Readme
This commit is contained in:
John Estropia
2016-05-17 14:05:11 +09:00

View File

@@ -733,7 +733,7 @@ or multiple objects at once with the `importUniqueObjects(...)` method:
```swift ```swift
CoreStore.beginAsynchronous { (transaction) -> Void in CoreStore.beginAsynchronous { (transaction) -> Void in
let jsonArray: [[String: AnyObject]] = // ... let jsonArray: [[String: AnyObject]] = // ...
try! transaction.importObjects( try! transaction.importUniqueObjects(
Into(MyPersonEntity), Into(MyPersonEntity),
sourceArray: jsonArray sourceArray: jsonArray
) )