Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究使用事件工具包向我们的用户显示日历事件,但我正在尝试找到一种从我们的网站获取事件的方法,因为我们的系统中已经有数千个事件。
有没有办法让事件工具包使用来自网络的 .ics 文件作为源?或任何其他方式从另一台服务器提取数据?
实际上有,而且很简单......创建一个 IBAction 并使用以下代码:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://addressToYourics.ics"]];
就是这样。如果用户想要设置新的日历,将会有一个确认,就是这样。