问题描述
我有一个需要每天更新的简单小部件,但是许多用户抱怨他们的小部件没有每天更新。
这里做错了什么?
func getTimeline(in context: Context,completion: @escaping (Timeline<TodayInfoEntry>) -> Void) {
let Now = Date() + 2
widgtBrain.date = Now
let nextUpdateDate = Calendar.autoupdatingCurrent.date(byAdding: .day,value: 1,to: Calendar.autoupdatingCurrent.startOfDay(for: Now))!
let todayInfo = widgtBrain.widgetInfoDicGenerator(forActualWidget: true,forPlaceholder: false,forSnapshot: false)
let entry = TodayInfoEntry(
date: Now,info: todayInfo
)
let timeline = Timeline(
entries:[entry],policy: .after(nextUpdateDate)
)
completion(timeline)
}
widgetBrain 根据给定的日期“现在”生成一个包含新数据的字典
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)