我使用swift编程语言在我的iOS
应用程序中集成了Google日历,当我尝试将全天事件编辑为常规事件时,我收到了类似的错误
错误Domain = com.google.GTLRErrorObjectDomain Code = 400"启动无效 时间&#34。 UserInfo = {GTLRStructuredError = GTLRErrorObject 0x600000645130: {message:"无效的开始时间。"错误:[1]代码:400}, NSLocalizedDescription =无效的开始时间。}
全天添加事件我传递了日期参数,如
newGoogleEvent.start?.date = GTLRDateTime.init(forAllDayWith:Date())
用于将全天事件编辑为常规事件我传递了
之类的参数 newGoogleEvent.start?.dateTime = GTLRDateTime.init(date: Utilitys.datafomatter(dateString: allEventsValue.starts!)!)