i am doing a reder application which can sync note to evernote,i found the API and sample code i integrate it my application and cotomize it according to out needs.and i create a sandbox useraccount for checking app before production service.in the evernoteclass.m we need to give the username and password by static there is a code like this
#import "Evernote.h"
NSString * const username = @"usernme";
NSString * const password = @"pswrd123";
NSString * const userStoreUri = @"https://sandbox.evernote.com/edam/user";
NSString * const noteStoreUriBase = @"https://sandbox.evernote.com/edam/note/";
@implementation Evernote
but i need to implement this by using username and password textfield like our login page.
by add ing this value staticly i am able to send note to evernote
how to give the username dynamically using textfileds.
thanks in advance.
With the latest evernote ios sdk, you can get authentication by oauth.