iOS:具有自定义事件源的事件套件(来自网络/ICS)?

发布于 2024-10-12 21:35:44 字数 128 浏览 2 评论 0原文

我正在考虑使用事件工具包向用户显示日历事件,但我正在尝试找到一种从我们的网站获取事件的方法,因为我们的系统中已经有数千个事件。

有没有办法让事件工具包使用网络上的 .ics 文件作为源?或者有其他方法从另一台服务器提取数据吗?

I am looking into using event kit to display calendar events to our users, but I am trying to find a way to source the events from our website, since we already have thousands of events in our system.

Is there a way to have event kit use a .ics file from the web as a source? Or any other way to pull the data from another server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别把无礼当个性 2024-10-19 21:35:44

其实是有的,而且很简单……
创建一个 IBAction 并使用以下代码:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://addressToYourics.ics"]];

确实如此。如果用户想要设置新日历,将会出现确认,仅此而已。

Actually there is, and it is quite simple...
Create an IBAction and use the following code:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://addressToYourics.ics"]];

And that it is. There will be an confirmation if the user wants to set the new calandar, and thats it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文