aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index b9af5466..977c7598 100644
--- a/README.md
+++ b/README.md
@@ -61,3 +61,8 @@ Using MailCore 2 is just a little more complex conceptually than the original Ma
```
In this sample, we retrieved and printed a list of email headers from an IMAP server. In order to execute the fetch, we request an asynchronous operation object from the `MCOIMAPSession` instance with our parameters (more on this later). This operation object is able to initiate a connection to Gmail when we call the `start` method. Now here's where things get a little tricky. We call the `start` function with an Objective-C block, which is executed on the main thread when the fetch operation completes. The actual fetching from IMAP is done on a **background thread**, leaving your UI and other processing **free to use the main thread**.
+
+## Documentation ##
+
+* [Class documentation](http://libmailcore.com/mailcore2/api/index.html)
+* [Wiki](https://github.com/MailCore/mailcore2/wiki)