UITextView から Evernote のノートにテキストを取得しようとしています。Evernote SDK をインストールしてオーソライズ&リンクOK。
何らかの理由で文字列が Evernote に表示されたときと同じように表示されるnoteContent
だけです ; layer =
; contentOffset: {0, 0}>
if([[EvernoteSession sharedSession] isEvernoteInstalled]) {
//tags
NSMutableArray *tagNames = [NSMutableArray arrayWithObjects:@"iCertifi",@"electrical",@"certificates", nil];
NSString *noteContent = [NSString stringWithFormat:@"%@",self.note.text];
//Note
EDAMNote* note = [[EDAMNote alloc] initWithGuid:nil title:@"Test Note - Evernote SDK" content:noteContent contentHash:nil contentLength:0 created:0 updated:0 deleted:0 active:YES updateSequenceNum:0 notebookGuid:nil tagGuids:nil resources:nil attributes:nil tagNames:tagNames];
[[EvernoteSession sharedSession] setDelegate:self];
[[EvernoteNoteStore noteStore] saveNewNoteToEvernoteApp:note withType:@"text/html"];
}