aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Robert La Ferla <robert@visi-call.com>2015-11-06 11:53:34 -0500
committerGravatar Robert La Ferla <robert@visi-call.com>2015-11-06 11:53:34 -0500
commitf8e8938e8ee3f48b0d980889dca8ad91675980ff (patch)
treec4e9773709ee97c74a3e8886ea271de35146299f /README.md
parent6154222f88fe6702906f34ae213282dc198be32a (diff)
Replaced deprecated method call in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b56858b4..82a13229 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Using MailCore 2 is just a little more complex conceptually than the original Ma
NSString *folder = @"INBOX";
MCOIndexSet *uids = [MCOIndexSet indexSetWithRange:MCORangeMake(1, UINT64_MAX)];
- MCOIMAPFetchMessagesOperation *fetchOperation = [session fetchMessagesByUIDOperationWithFolder:folder requestKind:requestKind uids:uids];
+ MCOIMAPFetchMessagesOperation *fetchOperation = [session fetchMessagesOperationWithFolder:folder requestKind:requestKind uids:uids];
[fetchOperation start:^(NSError * error, NSArray * fetchedMessages, MCOIndexSet * vanishedMessages) {
//We've finished downloading the messages!