How to integrate Tapku with CalDAV service? - iphone

I am developing a calendar application using Tapku library. I need to connect Tapku calendar with a CalDAV server.
Does anyone know how to configure Tapku calendar with CalDAV service or any other iOS calendar library where I can connect with CalDAV server?
At least does anyone know how to implement a CalDav iOS calendar? Because there are some apps out there which is connected to a calendar server. Also I cannot use default iOS calendar since my requirement is to show all the calendar data within my app.

I feel you can use one of the C or C++ or Objective C library mentioned in the link below.
http://caldav.calconnect.org/implementations/librariestools.html
As far as I could guess the library in the following link should be a good bet. You'd might need to do some work to get it working on iOS. I've not used this library but as I see this library supports the standard CalDav format and are being used in other projects. Hence,this is your best bet.
http://sope.opengroupware.org/en/sope_ical/index.html
Disclaimer: I've not used this library.

Related

How can I send calendar information from webservice to iphone app?

I want to create or use an open source php calendar as a webservice. This is just one feature of an entire app idea of mine, but I'm working on the app in steps and would like to start with a calendar. Is there a way to use a php calendar to update an iphone apps calendar? Example, I want to be able to add an appointment within the iphone app and have it update on the php calendar on my website? I want syncronization both ways. If I decide to add an event on the calendar through the website, I would like it to update in the iphone app.
For the maximum amount of customization I would go the route of writing your own calendar in PHP. Then you can make the calendar work exactly how you want and it can work seamlessly with your App. This shouldnt be too difficult as for a class project I had to right a simple PHP Calendar (it didnt have web services but still). Ray Wenderlich discusses several ways of using web services in iOS apps, and even has an example based on PHP/MySQL.
How To Write A Simple PHP/MySQL Web Service for an iOS App
How
To Write An iOS App That Uses A Web Service

Import possibility from iPhone App to native Calendar

So I have this iPhone app, working a lot with my webserver (PHP) and getting data from there, mostly HTML content. In this app you can see a list of events (with date, hour etc). Now my users asked me if they could include it to their native iPhone calendar.
Is that possible, and if yes, how?
Do I need to update my application for that or is it possible to generate a file at the server side which the users simply can download? I kinda hoped I could do it that way.
Try using the EventKit framework: http://developer.apple.com/library/ios/#documentation/EventKit/Reference/EventKitFrameworkRef/_index.htmlLike explained here: Programmatically add custom event in the iPhone Calendar

Can an app read iCal data on the iPHone/Pad in OS 3? OS 4?

Pretty much the title: I'm interested in building an app that displays iCal calendar data. But cant find a direct to to do it. Am I missing something? do the changes in OS 4 make this possible? Thanks.
It's not possible in 3.* version to access calendar lib in custom app, since calendar libraries are private.
But in 4.0 you can access as it's documented.
http://developer.apple.com/technologies/iphone/whats-new.html
While the EventKit in iOS 4 can definitely access the built-in calendar on an iDevice, it can't read a .ics file. For that, I would recommend checking out libical, a C library for reading and extracting data out of ics files. It takes a little bit of effort to get it compiling for iPhone, but it's definitely possible.

How to use google calendar in iphone application?

I am new in iphone application.i wanted to implement the google calendar in my application, i don't have any kind of idea about this so please give me some example and idea about google calendar.
On Google Calendar API page you can find some useful links: Client libraries for google services, ObjC library, sample Calendar project

Is there any in built calendar view in iPhone sdk

I want to invoke a calendar as the calendar application does in iPhone. Is there any inbuilt framework which will help or we have to built the whole calendar on our own.
There is no built in calendar framework for the iPhone. Additionally, you can't access a users calendars as with the address book or iPod.
There are some 3rd party solutions:
http://code.google.com/p/iphonecal/
http://code.google.com/p/iphone-gcal/
Check out the below link. This may help you...
https://stackoverflow.com/questions/3634000/is-there-a-calendar-control-we-can-use-for-iphone-apps`