Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to programmatically add calendar subscriptions on iOS?

Via the settings panel of your iPhone, you can add a subscription to a remote .ics calendar format. I have a Dutch iPhone app that does this from within the app (see the screenshot below, "abonneren op de agenda" means "subscribe to the calendar"), but there must be others too.

I want to mimic this behavior for a project of mine, but I can't find the API to do this with. It looks like it's not a part of EventKit, but because there's no app switching going on when you hit 'subscribe' in the example app I suspect it's also not a url scheme.

Who knows?

Existing appSubscriptions in the mail settings panel

like image 531
epologee Avatar asked Sep 29 '11 12:09

epologee


1 Answers

Try something like this:

NSString *url = @"http://server/filename.ics";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];

This shows an uialertview with the question to the user if he/she wants to subscribe.

;)

like image 187
Roeland Weve Avatar answered Nov 27 '22 15:11

Roeland Weve