Last active
February 22, 2016 19:47
-
-
Save MarcusSmith/261ecd4e584d945dd108 to your computer and use it in GitHub Desktop.
CKFetchRecordsOperation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let operation = CKFetchRecordsOperation(recordIDs: myRecordIDs) | |
operation.fetchRecordsCompletionBlock = { (recordsByRecordID, error) in | |
// recordsByRecordID is a dictionary of records, keyed by their recordIDs | |
} | |
database.addOperation(operation) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment