gpt4 book ai didi

ios - Cordova IOS 7.1 日历是只读的。

转载 作者:行者123 更新时间:2023-12-01 17:32:25 24 4
gpt4 key购买 nike

我们正在使用 cordova 构建跨平台应用程序。 iOS 7.0 及更早版本中可以保存日历。在最新版本中它给出错误。创建日历时找不到日历,如果我们使用 iPhone 日历应用程序手动创建日历,则会出现日历为只读错误。

我们正在使用 EddyVerbruggen 的日历插件。

var startDate = new Date(2014,10,1,18,30,0,0,0);
var endDate = new Date(2014,10,30,19,30,0,0,0);
var title = tempItem.name;
var location = "Home";
var notes = tempItem.description;

var success = function(message) { alert("Success: " + JSON.stringify(message)); };
var error = function(message) { alert("Error: " + message); };

var createCalOptions = window.plugins.calendar.getCreateCalendarOptions();
createCalOptions.calendarName = "Calendar";
createCalOptions.calendarColor = "#FF0000"; // an optional hex color (with the # char), default is null, so the OS picks a color
window.plugins.calendar.createCalendar(createCalOptions,success,error);
window.plugins.calendar.createEventInNamedCalendar(title,location,notes,startDate,endDate,"Calendar",success,error);

最佳答案

我通过在保存事件时不提供日历名称解决了此问题。现在,事件将保存在默认日历中。

关于ios - Cordova IOS 7.1 日历是只读的。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24487634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com