A newly-redesigned, simple, workflow-oriented library built on the Evernote Cloud API. It's designed to drop into your app easily and make most common Evernote integrations very simple to accomplish. (And even the more complex integrations easier than they used to be.)
Setup instructions and sample snippets are all in the Getting Started guide. Have a look there next and you'll be working with Evernote in just a few minutes.
This library is the spiritual, although not syntactic, successor to to the Evernote SDK for iOS 1.x. Currently, both libraries are available and supported. This one is not a "drop-in" update-- it omits the "app bridge" functionality, and the objects that you use for authentication and to get to the traditional (EDAM) API are a little different. We have provided a migration guide for users of the 1.x SDK.
This version of the SDK is designed for iOS 7 and above.
Yes. (To use the SDK in a non-ARC project, please use the -fobjc-arc compiler flag on all the files in the Evernote SDK.)
Yes! Just add
pod 'evernote-cloud-sdk-ios'
to your Podfile
Please check out the Evernote Developers portal page.
Yes. Please specify preferRegistration parameter as YES when calling
- (void)authenticateWithViewController:(UIViewController *)viewController
preferRegistration:(BOOL)preferRegistration
completion:(ENSessionAuthenticateCompletionHandler)completion;
on [ENSession sharedSession]
You can find it here.