Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to load iphone calendar application in iphone simulator 4.0

Tags:

iphone

How to load iphone calendar application in iphone simulator 4.0 ?

Is it possible ?

Can anyone help me ?

Thanks in advance..........

like image 297
Tamil Avatar asked Dec 22 '22 23:12

Tamil


2 Answers

Short answer - it is not possible.

The simulator doesn't come with the Calendar.app. Simulator is able to run only applications that are compiled for Intel processor. So even if you could somehow get the Calendar app from the iPhone, it would not run as it is compiled for ARM cpu.

like image 129
Michal Avatar answered May 24 '23 08:05

Michal


While there is no calendar app in the simulator the entries are stored in a sqlite database in $HOME/Library/Application Support/iPhone Simulator//Library/Calendar/Calendar.sqlitedb

Calendar Events are stored in several tables but mainly in a table called CalendarItem which can be opened with a sqlite viewer.

If you need a very easy sql lite viewer the FireFox plugin SQLite Manager works like a champ.

Hope this helps.

like image 25
Rich Dominelli Avatar answered May 24 '23 09:05

Rich Dominelli