tags:

views:

87

answers:

1

How to parser .ics file in iphone ?

Thanks in advance

+2  A: 

As far as I know there is nothing public on the iPhone to parse .ics files. You have to use a third party lib like libical

V1ru8
How to implement it in my application (How to use third party lib)
dragon
There are some samples when you download the libical src.In the README is an howto compile the lib. But be aware that you have to link static against the lib on the iPhone. You can't link dynamic on the iPhone.
V1ru8