Reminders in the list which have been marked completed.
Reminders in the list which are NOT completed.
All reminders in the list.
The name of the list.
Create a new Reminder object in this list
Save changes to the list.
Returns the system default reminder list configured for new reminders.
Searches for a reminder lists matching the title. If none is found, return undefined.
Searches for a list in the reminders app matching the title. If none is found, creates a new list with that title. If more than one list with the same name exist in Reminders, the first found will be returned.
Get an array all known reminder lists on the device.
Generated using TypeDoc
ReminderList
ReminderList objects are used to manipulate and create lists in the built-in Reminders app.
Examples
const list = ReminderList.findOrCreate("Groceries"); let reminder = list.createReminder(); reminder.title = "Bananas"; reminder.notes = "Get slightly green ones." reminder.update();