Hi, everyone,
I want to ask a question about the iPhone application. Where does the calendar information stored in the iPhone? Is it by using EKEvent?
Hi, everyone,
I want to ask a question about the iPhone application. Where does the calendar information stored in the iPhone? Is it by using EKEvent?
The calendar is stored in a SQLite3 database at /var/mobile/Calendar/Calendar.sqlitedb
. On the simulator, it is at /Users/<username>/Library/Application Support/iPhone Simulator/User/Library/Calendar/Calendar.sqlitedb
.
You shouldn't access this database directly.
And yes, EventKit is just using this database.