channing / evernote-cloud-sdk-ios

Evernote Cloud SDK for iOS

Home Page:https://dev.evernote.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Evernote Cloud SDK 2.0 for iOS

What Is This?

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.)

How Do I Get Started?

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.

Note for users of the 1.x SDK for iOS

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.

FAQ

What iOS versions are supported?

This version of the SDK is designed for iOS 7 and above.

Does the Evernote SDK support ARC?

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.)

Can I use this library with CocoaPods?

Not yet. We know this is useful and intend to publish there when the SDK stabilizes and leaves beta.

Where can I find out more about the Evernote for Developers?

Please check out the Evernote Developers portal page.

Can I show the registration page instead of the login page when authorizing?

Yes. Please specify preferRegistration parameter as YES when calling

- (void)authenticateWithViewController:(UIViewController *)viewController
                    preferRegistration:(BOOL)preferRegistration
                            completion:(ENSessionAuthenticateCompletionHandler)completion;

on [ENSession sharedSession]

How can I avoid showing the customized Evernote share sheet and Evernote iOS 8 share extension at the same time?

You can do the same thing as our sample app does: If on iOS 8 and Evernote app is installed do not show the customized share sheet provided by the SDK. Check out the code from here.

About

Evernote Cloud SDK for iOS

https://dev.evernote.com/

License:Other