0

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"];
}
4

1 に答える 1

0

わかりましたこれを修正しました

設定する必要があります

[[EvernoteNoteStore noteStore] saveNewNoteToEvernoteApp:note withType:@"text/html"];

[[EvernoteNoteStore noteStore] saveNewNoteToEvernoteApp:note withType:@"text/plain"];

于 2013-10-20T15:24:52.433 に答える