We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENNoteSearch *search = [ENNoteSearch noteSearchWithSearchString:@"reminderOrder:*"]; [sesion findNotesWithSearch:search inNotebook:nil orScope:ENSessionSearchScopeAll sortOrder:ENSessionSortOrderNormal maxResults:100 completion:^(NSArray *findNotesResults, NSError *findNotesError) { for (ENSessionFindNotesResult* result in findNotesResults) { [sesion downloadNote:result.noteRef progress:^(CGFloat progress) { NSLog(@"downloading notes %f", progress); } completion:^(ENNote *note, NSError *downloadNoteError) { NSLog(@"note reminder is %d",note.isReminder); }]; } }];
I have downloaded all note which isReminder is 1, but I don't know how to access reminderTime from ENNote. Could you help me?
The text was updated successfully, but these errors were encountered:
You'll need to get access to the underlying EDAMNote. Its attributes property has properties for reminderOrder, reminderDoneTime, and reminderTime
attributes
reminderOrder
reminderDoneTime
reminderTime
Sorry, something went wrong.
No branches or pull requests
I have downloaded all note which isReminder is 1, but I don't know how to access reminderTime from ENNote.
Could you help me?
The text was updated successfully, but these errors were encountered: