aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Oliver Rickard <ocrickard@gmail.com>2013-06-03 10:10:33 -0700
committerGravatar Oliver Rickard <ocrickard@gmail.com>2013-06-03 10:10:33 -0700
commit9389537b8c8e844dedf6059cfd6a721ff6582136 (patch)
treeb696e32de2aedf221830ae67c060f63c70a053b6 /README.md
parent11d23e3440fd4c0eb5a24d40bfa016c33b780ec5 (diff)
Added links to the documentation
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)